To learn PHP you’ll need a LAMP server of some sort, a text editor, and a good study guide. I highly recommend buying a book because it’s an excellent UI while learning a language.
Related Articles

PHP Programming (OLD)
Basic Math and Numbers in PHP Programming

*NEW
PHP – Test Transformation (strtolower, strtoupper, ucfirst, ucwords
Text transformation in PHP is useful not just for esthetics, but to also make sure that data is uniform when dealing with databases and such. strtolower() https://www.php.net/manual/en/function.strtolower.php https://www.w3schools.com/php/func_string_strtolower.asp strtoupper() https://www.php.net/manual/en/function.strtoupper.php https://www.w3schools.com/php/func_string_strtoupper.asp ucfirst() https://www.php.net/manual/en/function.ucfirst.php https://www.w3schools.com/php/func_string_ucfirst.asp ucwords() […]

PHP Programming (NEW)
PHP – Sort Array by Key – ksort() and krsort()
You can sort arrays by key with ksort() and krsort().
Be the first to comment