Why does the SQL below work fine in the phpMyAdmin console but when I run it below it does not work unless I take away one of the create table commands?
$sql = "create table nnblog_posts
(
id tinyint(10),
title varchar(70) null,
date varchar(20) null,
content text null,
author varchar(20) null
);
create table nnblog_users
(
userid tinyint(10),
rank tinyint(2) null,
username varchar(10) null,
password varchar(30) null,
firstname varchar(30) null,
lastname varchar(30) null,
email varchar(70) null,
location varchar(50) null,
options varchar(50) null
);";
mysql_query($sql);