Related Articles

PHP Programming (NEW)
PHP – elseif Statements
elseif statements allow you to check to see if any of a number of conditions are true before failing out to the else in an if statement.

MySQL Introduction (NEW)
MySQL – INSERT Records with HTML Form and PHP
You can easily create an HTML form with PHP to insert records within your MySQL database. Warning – It’s important to create a troubleshooting routine, and verify you have written your code properly. form.html phpTEST.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. […]
Be the first to comment