Im not seeing it but its not working
here is the code:
mysql_select_db("my_db", $con);
$sql = "CREATE TABLE stream
(
waveID int NOT NULL AUTO_INCREMENT,
PRIMARY KEY(gameID),
userID int,
wave varchar(25),
waveTime TIMESTAMP DEFAULT NOW()
)";
// Execute query
if(!mysql_query($sql))
{
echo "Couldn't do it";
}
else
{
echo "alright";
}