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
*NEW
PHP – Turn Strings into Arrays with explode()
The explode() function allows you to turn a String into an Array based on a separator you define. explode() https://www.php.net/manual/en/function.explode.php https://www.w3schools.com/php/func_string_explode.asp explode.php
PHP Programming (NEW)
PHP – Garbage Code and Bad Variables
Since Variables in PHP do not need to be declared you can run into issues such as trying to add a String to an Int. You also may have issues if you misspell a variable. […]
PHP Programming (NEW)
PHP – switch Statements
switch Statements allow you to allow events to happen based on specific values for variables.
Be the first to comment