PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How do I connect to mySQL from PHP?


The first thing you will need to do when using PHP and mySQL is to connect to the mySQL database from PHP.

Luckily there are a couple of functions in PHP that make it easy. Once you get it working you can just copy and paste at the top of each script that requires the database or use a template or include file of some sort to include the details.

<?php
$db 
mysql_connect("HOST""USERNAME""PASSWORD");
mysql_select_db("DATABASE_NAME",$db);
?>


And that's all there is to it - use your username, host, password and database name and this will establish the connection.

The most common problem is that you get the password wrong so double check it's right if you get errors.



Comment on this Question and Answer >>>

ASK A QUESTION

More mysql PHP Questions

How do I find the number of rows affected by a query?

How do I return the date with mySQL?

How do I access the current time with mysql?

How do I delete a row from a table?

My website www.quicheandpie.com has navigation buttons which were added by going to admin/categorylist and adding a category. I can add category = navigation buttons and update them, but I can not delete them. Any ideas how I can find where the info



Custom Search