You can use basic ASCII Text editors to write PHP code. You simply need to save the file with the .php extension.
Related Articles

PHP – Send Emails – mail()
You can send emails directly from PHP scripts using the mail() function. You need to have a local email server setup to do this, to to learn it’s best to use a shared hosting account […]

PHP – switch Statements
switch Statements allow you to allow events to happen based on specific values for variables.

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() […]
Be the first to comment