PHP3 Introduction Introduction to PHP and web database interfacing with MySQL. PHP3 is an HTML-embedded scripting language allowing web developers to create dynamic, database-driven websites.
Name:
Terry
Subject:
creating tables on the fly
Date:
09-22-1999 10:43PM
I can't get the following code to work?
What am I doing wrong?
$create = "CREATE TABLE '$table' (
partno CHAR(10) NOT NULL,
descript CHAR(60) NOT NULL,
cost DOUBLE(10,5) NOT NULL,
user CHAR(15) NOT NULL,
modelno CHAR(20) NOT NULL,
PRIMARY KEY(partno))";
$docreate = MYSQL_QUERY($create) or die("Invalid create");