I use the Paypal shopping cart function and am trying to create a variable that will go into the database that will call the button, but for some reason the insert command doesn't like this variable:
$ptwo = "<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input type=\"hidden\" name=\"cmd\" value=\"_cart\"><input type=\"hidden\" name=\"business\" value=\"$account\"><input type=\"hidden\" name=\"item_name\" value=\"$name\"><input type=\"hidden\" name=\"amount\" value=\"$price\"><input type=\"hidden\" name=\"return\" value=\"/store/thank_you.php\"><input type=\"hidden\" name=\"no_note\" value=\"1\"><input type=\"hidden\" name=\"currency_code\" value=\"USD\"><input type=\"image\" src=\"https://www.paypal.com/images/x-click-but22.gif\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - A fast, free and secure service\"><input type=\"hidden\" name=\"add\" value=\"1\"></form>";
What is the problem with it????
Ian