PHP Basic
PHP Advanced
PHP Database
| MySQL Connect |
|
The free MySQL database is very often used with PHP. Create a Connection to a MySQL DatabaseBefore you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax
Note: There are more available parameters, but the ones listed above are the most important. Visit our full PHP MySQL Reference for more details. ExampleIn the following example we store the connection in a variable ($con) for later use in the script. The "die" part will be executed if the connection fails:
Closing a ConnectionThe connection will be closed automatically when the script ends. To close the connection before, use the mysql_close() function: <?php |
MySQL Connect