Related Articles

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 – Write to File – file_put_contents()
You can write variables to a file with file_put_contents(). If the file pointed to does not exist it will be created. By adding FILE_APPEND this will append data to the created file, if not the […]

PHP Programming (NEW)
PHP – Code Reuse – include
Using includes you can reuse the same code in multiple scripts.
Be the first to comment