Curl | How to test a Restful web service using curl

| By Webner

Let’s consider, we have a demo Restful service (created in Java Spring here but you can create in any language) to login user which accepts username and password as input and returns Success/Failure in response. Request Object : Demo Login

Javascript | How to post Acord PDF Forms data to a Web URL

| By Webner

Description : You have Fillable PDF on which you have button “Save Entered Data”. On button you want post the form data to php file. Solution : Follow these steps : 1. Open Form with Adobe Acrobat Pro. Goto–>Tools. 2.

PHP | Deleting files from local machine (unlink(): No such file or directory)

| By Webner

Assume following is the path on your system in which you want to delete some files through code (unlink function): C:\wamp\www Now if we use the same address in source variable (“C:\wamp\www”), it gives the following error: unlink(): No such

Using UNION syntax in CakePHP 2.4.6

| By Webner

Following UNION syntax works properly in CakePHP 2.4.6 version but it doesn’t work in CakePHP 2.5.2 version: $unionQuery = $dbo->buildStatement ( array( ‘fields’ => array( required fields), ‘table’ => $dbo->fullTableName(database_table_name), ‘alias’ => ‘customObject1’, ‘limit’ => null, ‘offset’ => null, ‘joins’