Lets say I am using the following to connect to a mySQL database of mine...
$dbh=mysql_connect ("localhost", "nichols_general", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("nichols_news");
I want to create the table with the following columns...
title : description : day : month : year : content
how do I create such a table with PHP?
$dbh=mysql_connect ("localhost", "nichols_general", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("nichols_news");
I want to create the table with the following columns...
title : description : day : month : year : content
how do I create such a table with PHP?