Category

PHP

22 articles in this category

Fatal error: Class ‘SoapClient’ not found

May 6, 2016 1 min read

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…

SOAP Connectivity to Sugarcrm PHP Code

May 6, 2016 2 min read

<?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’ =>…

How to insert a record in MySQL with PHP

May 6, 2016 8 min read

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…

How to create a Sign Up form registration with PHP and MySQL

May 6, 2016 8 min read

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…

Build your TextToSpeech service with FreeTTS

May 6, 2016 5 min read

A simple http enabled text to speech server   Introduction One of the technologies I’m more fond of is domotics. I don’t have the budget for a java…

Run your PHP applications under Resin

May 6, 2016 5 min read

I love the power of Java and of backend products like OpenJMS, Hibernate, Spring, JMX and so on. And I love the simple, immediate and effective approach of…