1.
How to connect to MySQL database using PHP
Before you can get content out of your MySQL database, you must know how to establish a connection to MySQL from inside a PHP script.
2.
How to Back Up and Restore a MySQL Database
If you're storing anything in MySQL databases that you do not want to lose, it is very important to make regular backups of your data to protect it from ...
3.
PHP: Export Database Schema as XML
Sometimes it can be useful to have a dump of the current database schema. This script reads the schema from a MySQL database and outputs XML that describes ...
4.
ASP Folder Object
We can use the properties and methods of the Folder object to traverse directories ... Write "LastModified: " & objFolder.DateLastModified & "<br /><br />" ...
5.
PHP: Export Database Schema as XML
This script reads the schema from a MySQL database and outputs XML that describes the schema. ... PHP: Export Database Schema as XML, Print, Email ...
6.
How to Create CAPTCHA Protection using PHP and AJAX
//Throw in some lines to make it a little bit harder for any bots to break ... Next we open the connection to our server PHP page with the appended ... I just want to suggest some several things you can do to make it more secure: ...
7.
JavaScript: Form Validation
<td><input name="email" size="35" maxlength="30" type="text"></td> </tr> <tr> <td><label for="phone">Your telephone number:</label></td> ...
8.
JavaScript: Form Validation
Form data that typically are checked by a JavaScript could be:. Required fields; Valid user name; Valid password; Valid e-mail address; Valid phone number ...
9.
JavaScript: Conditional Statements
Sometimes when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.
10.
JavaScript: Form Validation
For the majority of your users, JavaScript form validation will save a lot of time up ... Next we want to see if the email address the user entered is real. ...