Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can we create a database using PHP and mysql?

Answer Posted / lt

<?php
$link = mysql_connect('localhost', 'mysql_user',
'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}

$sql = 'CREATE DATABASE my_db';
if (mysql_query($sql, $link)) {
echo "Database my_db created successfully\n";
} else {
echo 'Error creating database: ' . mysql_error() . "\n";
}
?>

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to stop the execution of php script?

1020


Can we use php variable in javascript?

1061


Explain me what is the difference between explode() and split() functions?

1156


What are php parameters?

1057


What is the main difference between asp net and php?

1066


I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what is the problem?

1017


Explain some most commonly use string functions in php?

1083


How to change the principal password?

1075


What are the four scalar types of php?

1165


What is the difference between html and php?

1044


What is the php function that removes the first element of the array and returns it?

1011


Write a program to upload a file in php?

1061


Why do we use in php?

1046


How to pass variables by references?

1038


What is difference between rest and http?

1061