Forum : table
Brief description  about Online courses   join in Online courses
View Noor  Mohammed 's Profile

table

Hello sir may i know how to create a table with one column in php?

many thanks and regards.
Asked by Noor Mohammed | Jan 17, 2011 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
use mysql create table query in php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');

$dbname = 'petstore';
mysql_select_db($dbname);

$sql = "CREATE TABLE Persons(FirstName varchar(15))";

// Execute query
mysql_query($sql);

mysql_close($con);
Jan 18, 2011