Jump to content

-BloodStaind-

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Everything posted by -BloodStaind-

  1. No, what I'm saying is that you cannot execute multiple SQL statements in a single query: <?php $sql = <<<EOQ DROP TABLE IF EXISTS mytable; CREATE TABLE mytable (...); EOQ; mysql_query($sql); ?> That does not work. You have to query each individually: <?php mysql_query("DROP TABLE..."); mysql_query("CREATE TABLE..."); ?> Oh, hehe oops. Thanks man!
  2. Alright, I changed "mysql_query($sql, $con);" to "mysql_query($sql); And it still doesn't work.
  3. I'm trying to create mySQL tables in PHP, but I can't seem to get the code to work. I've been learning PHP for about 2 days now, so if the code is way off... My bad. Here it is: <?php $con = mysql_connect("localhost","username","password"); mysql_select_db("dbname"); $sql = "SET SQL_MODE=NO_AUTO_VALUE_ON_ZERO; DROP TABLE IF EXISTS mqs_users; CREATE TABLE IF NOT EXISTS mqs_users ( id int(11) NOT NULL auto_increment, username varchar(225) NOT NULL, password varchar(225) NOT NULL, email varchar(225) NOT NULL, UNIQUE KEY id (id) )"; if (!$con) { echo('Could not connect: ' . mysql_error()); exit; } if(mysql_query($sql)) { echo "Table succesfull"; } mysql_query($sql, $con); ?> I need to know what I'm doing wrong.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.