Hi,
Right now when I do I query its like this:
Can I do this:
Right now when I do I query its like this:
PHP:
$sql = "INSERT INTO someTable (rowName) VALUES ('someText')";
Can I do this:
PHP:
$sql = "INSERT INTO someTable (rowName) VALUES ('someText'); INSERT INTO anotherTable (rowName) VALUES ('someText')";
mysql_query($sql, $con);