PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
When I try to run this script I get the error message "You have an error in your SQL syntax near 'where payer_email = 'oskare100@test.com'' at line 1" :
$txn_id = "12345678910";
$payer_email = "oskare100@test.com";
//Connect to MySQL
mysql_connect("localhost", "test", "30053005") or die(mysql_error());
//Select file system database
mysql_select_db("test") or die(mysql_error());
$sql13 = "INSERT INTO paypal_sales (txn_id_refund) VALUES ('$txn_id') where payer_email = '$payer_email'";
$result13 = mysql_query($sql13) or die( mysql_error() );
I can't figure out what SQL syntax error it's talking about..