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 / sunil kumar

It`s simple than above

<?php
mysql_connect("localhost","root","");//connect to host
$sql_create_db="create database my_db";
if(mysql_query($sql_create_db))
echo"Database is created";
else
echo"Error in creating Database".mysql_error();

?>

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is mysqli_query?

912


How cookies are transported from browsers to servers?

892


Explain what are the two main string operators?

894


What is the role of php?

898


What are the correct and the most two common way to start and finish a PHP block of code?

1005


Which php framework is best?

928


Why are sessions used?

896


Require_once(), require(), include(). What is difference between them?

934


What is the current stable version of php? What advance thing in php7?

959


Is salary fixed or variable cost?

940


Explain the advantages of using PHP?

957


What is the use of $_server and $_env?

984


Why php was called as personal home page?

929


How to replace a substring in a given string in php?

975


How do you connet mysql database with php?

1014