PHP Tutorials

Whether just getting started or an expert, this vast collection of PHP tutorials will help you create dynamic content for powerful web-based applications in no time.

Results via Envato Market

By Matt Allen on July 30, 2000 With more and more e-commerce sites popping up around the world, the amount of transaction servers will need to grow to support them all. Many of the newer e-comms providers have made life easier for us developers by developing a web based environment…

By Matt Allen on July 30, 2000 What do I do? There is a nifty little utilisty out there called cURL (http://curl.haxx.nu) that is run via command line or the EXEC() function in PHP. Here is an example of some PHP code that talks SSL. <?php $URL=”some.test.url.com/ecomms-test.php”; exec(“/usr/local/bin/curl -m 120 -d “$data” https://$URL -L”,$return_message_array, $return_number); for ($i = 0; $i < count($return_message_array); $i++) {     $results = $results.$return_message_array[$i];…

By Matt Allen on July 30, 2000 What we have just succeeded in doing is simulating an HTTPS post, so imagine you just filled out a form on the web and pressed submit. There are tons of uses for this type of technology out there. For instance, I just had…