PHP – SOAP sample

PHP simple SOAP sample SOAP server file (soapserver.php): <?php // Set a function in SOAP server file function hello($someone) { return “Hello ” . $someone…

Php – script execution time

To view php script execution time insert next code into your script. Insert next code at the top of the page: <?php $mtime = microtime();…