The code I'm using is
$sql= "INSERT INTO `Table 1` (Column 1, Column 2) VALUES (Value 1, Value 2)"';
$sql= "INSERT INTO `Table 2` (Column 1, Column 2) VALUES (Values 1, Values 2)";
But nothing appears in the mysql table, although the echo does show up as "successful"
Is there a reason why the information is not making it into the mysql database?