Archive for the ‘
MySQL ’ Category
Setting up a database connection can be a difficult task if you google through different codes present online. Here is the easy most method to create a dbconnection for PHP and mysql.
(more…)
Create a file index.php and insert.php. Also create a DataBase with some name lets say mydb in mysql. After creating database named as mydb add a table named as mydbtb in it with four fields. If you do not know about mysql then just open it and create a database mydb in it and run this query in it from query window.
(more…)
This example describes that how we can find that database and mySQL connections are established or not and what to do if one of the connections is not established. First we define dbuser, dbpassword and database name and then create a db connection and mysql connection and then check these if these are established and script can find the database and mysql. In case it can not locate any of these then we just tell the script to exit and stop proceeding.
(more…)
After execution of mysql query its appropriate (even essential) to close mySQL connection. Use the following script to close mySQL connection.
(more…)