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 / vivek mohan singh

$dbhost = "localhost"; // database hostname
$dbuser = "root"; // database username
$dbpassword = ""; // database password
$dbname = ""; // database name

//database connection
$link=mysql_connect($dbhost,$dbuser,$dbpassword) or die ('I
cannot connect to the database because: ' . mysql_error());
mysql_select_db($dbname ,$link);

Is This Answer Correct ?    6 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's the output of the ucwords function in this example?

1099


Why do we show php code in browser?

1114


Is php faster than nodejs?

1017


What are the main error types in php?

1127


What is whitespace in php?

1106


What is var_dump function in php?

1161


How to repeat a string to a specific number of times in php?

1016


What does the scope of variables means?

1058


How do you destroy a session?

961


What is the difference between print() and echo()?

1103


Is runtime polymorphism overriding?

1069


What is inheritance in php? How many types of inheritance supports php?

1048


Does php 7 support mysql?

1044


Explain me what are the 3 scope levels available in php and how would you define them?

1263


How to check an element is exists in array or not in php?

1118