Introduction to CodeIgniter Basic With CRUD CodeIgniter (CI) is one of popular php framework. If you are already building PHP Application, CodeIgniter will help you to do it better and more easily. With CodeIgniter, you can save time, make your web more robust, your code will be easier to read and maintenance. It is free, ..
Archives : May-2016
SOAP SOAP is probably the most used Web Services protocol. It provides a way of exchanging structured information of application functionality. A SOAP interface can be defined by its Web Service Description Language (WSDL) file, which simply provides the definitions of all available methods to the client. One of the biggest attractions to using SOAP ..
Convert and Loop through JSON with PHP and JavaScript Arrays/Objects September 30, 2014 by Jonathan Suh If you’re working with JSON (JavaScript Object Notation) and either need to convert a JSON string to array or object and loop through it or vice-versa, take an array or object and convert it to a JSON string to ..
Diagnose Look up the following inside your script file phpinfo(); If you can’t find Soap Client set to enabled like so: Fix Do the following: Locate php.ini in your apache bin folder, I.e Apache/bin/php.ini Remove the ; from the beginning of extension=php_soap.dll Restart your Apache server Look up your phpinfo(); again and check if you ..
<?php $client = new SoapClient(“http://192.168.1.27/soap.php?wsdl”, array(“trace” => 1, “exception” => 0)); // LOGIN $response = $client->__soapCall(“login”, array( “user_auth” => array( ‘user_name’ => ‘user’, ‘password’ => md5(‘bitnami’), ‘version’ => “0.1” ), “application_name” => ” ) ); $session_id = $response->id; echo “session_id=$session_id\n”; // CREATE ACCOUNT $response = $client->set_entry($session_id, ‘Accounts’, array( array(‘name’ => ‘name’, ‘value’ => “Account Test ..
Read more: http://mrbool.com/how-to-insert-a-record-in-mysql-with-php/28621#ixzz47s0C2cqJ Requirements for techniques: We will require in this article to create a simple contact page for a website, i.e. HTML 5 CSS 3 PHP MySQL database Xampp Server Requirements for Environment: It’s up to on you on which application you can work easily, as there are number of applications which are being ..
Read more: http://mrbool.com/how-to-create-a-sign-up-form-registration-with-php-and-mysql/28675#ixzz47rznG0YC Much of the websites have a registration form for your users to sign up and thus may benefit from some kind of privilege within the site. In this article we will see how to create a registration form in PHP and MySQL. We will use simple tags and also we will ..
Introduction It’s easy to use PHP with MySQL to create it. But for these kind of webpages we need to use form validation on our webpages, if anyone use JavaScript so it’s well and good because JavaScript is a very good technique to use and solve Form Validation problems. But we will directly go to ..
Error message Access forbidden! New XAMPP security concept: Access to the requested directory is only available from the local network. This setting can be configured in the file “httpd-xampp.conf”. Solution: All you have to do is to edit the httpd-xampp.conf from Require local to Require all granted in the LocationMatch tag. # ..
Modify the my.ini configuration file (assuming default paths) C:\Program Files\MySQL\MySQL Server 5.5\my.ini In the SERVER SECTION, under [mysqld], add the following line: skip-grant-tables so that you have # SERVER SECTION # ———————————————————————- # # The following options will be read by the MySQL Server. Make sure that # you have installed the server correctly (see ..
Recent Comments