It is possible? This gives me a sintax error:
$query = "DROP TABLE IF EXISTS users; CREATE TABLE users (userId TINYINT UNSIGNED, name VARCHAR(10)";
mysql_query($query);
So I think that to do a lot of queries I have to use an array and go through it, I am wrong?
Thanks and sorry, I am very new to this _