You can use basic ASCII Text editors to write PHP code. You simply need to save the file with the .php extension.
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 – Turn File Into an Array – file()
By turning a file into an array you can work with the data within it as you would a standard array.
PHP Programming (NEW)
PHP – Comments
Commenting code allows you to add notations to you script to explain why it was written how it was. You can also use commenting to keep specific code from running during troubleshooting. <?php /* […]
Be the first to comment