curl to automate HTTP jobs : Working with Curl command

Curl is a command line tool for doing all sorts of URL manipulations and transfers. Curl is not written to

Read more

PHP MySQL Database Connection

PHP 5 and later can work with a MySQL database using: MySQLi extension (the “i” stands for improved) PDO (PHP

Read more

php ltrim function : php remove left string

Remove characters from the left side of a string: Example <?php $str = “Hello World!”; echo $str . “<br>”; echo

Read more