np...
here is the query that is returned:
CREATE TABLE mod_auto ( autoid tinyint(4) NOT NULL auto_increment, userid tinytext NOT NULL, year tinytext NOT NULL, make tinytext NOT NULL, model tinytext NOT NULL, vin tinytext NOT NULL, PRIMARY KEY (autoid) ) TYPE=MyISAM; CREATE TABLE mod_auto_action ( actionid tinyint(4) NOT NULL auto_increment, autoid tinyint(4) NOT NULL default '0', date tinytext NOT NULL, mileage tinytext NOT NULL, invoiceid tinytext NOT NULL, vendor tinytext NOT NULL, action tinytext NOT NULL, PRIMARY KEY (actionid) ) TYPE=MyISAM;
This would be assigned to the string $content
then execute this:
$result=mysql_query($content);
Should work, right? Odd that it doesn't...