php and database

Contributor
30Jul2010,20:00   #1
hardik soni's Avatar
Hello everyone,

I am new in PHP. I want to know how to establish connection between PHP and any database, Please guide me if you can...

In Anticipation....
Go4Expert Founder
30Jul2010,20:12   #2
shabbir's Avatar
http://lmgtfy.com/?q=connect+mysql+PHp
Contributor
30Jul2010,20:18   #3
hardik soni's Avatar
All right nice info from that site
but can anybody let me know something in your own language for the same topic ?

Thanks.
Contributor
30Jul2010,20:33   #4
johnny.dacu's Avatar
well... is simple. to estabish a mysql connection use:
PHP Code:
mysql_connect("server","username","password"
to select a database:
PHP Code:
mysql_select_db("db_name"); 
to perform a mysql query:
PHP Code:
mysql_query("query string"); 
Skilled contributor
7Aug2010,09:49   #5
ManzZup's Avatar
First you need to make a database from your admin panel. (hope you know to do that)

Then the following script would give the basic concept of connecting:

PHP Code:
<?php

$username 
"your_db_username";
$password "your_db_password";
$database "your_database_name";
$host "your_host_address";

$db_handle mysql_connect($host$username$password);
$db_found mysql_select_db($database$db_handle);

if(
$db_found){
     print 
"Auuraah You sucessfully connected!";
     
mysql_close($db_handle);
}else{
     print 
"ahh Try Again!!";
}
?>
shabbir like this