What is wrong with this code?
Code:
<?php
$con = mysql_connect("mysql157.secureserver.net","132591","lotrt2t");
if(!con){
die("Hey, you with the eyes, check your connection.");
}
mysql_select_db("132591");
$sql = "CREATE TABLE backupuser(
user varchar(12),
password varchar(12)
)";
mysql_query($sql, $con);
$sql = "SELECT * INTO backupuser FROM users ";
mysql_query($sql, $con);
?>
The SELECT * INTO userbackup FROM users is not working. It acts as though I did not even put it there.
"Judge a man by his questions, not by his answers."
-Voltaire