coldfiretech Posted October 21, 2008 Share Posted October 21, 2008 Hello everyone I am testing some php scripts locally using WAMP. I am getting this error Parse error: syntax error, unexpected $end in C:\wamp\www\testing\handlesignups.php on line 97 Here is the code from handlesignups <SCRIPT language="JavaScript"> function submitform() { document.paypal.submit(); ) window.onload=submitform; } </SCRIPT> <?php include("classes/signup.class.php"); $signup = new signup(); if (isset($_POST['signupbt'])) { // SET PRICE FOR SUBSCRIPTIONS if($_POST['subscription'] == 'single') { $price = '00.01'; } elseif($_POST['subscription'] == 'partner') { $price = '00.01'; } elseif($_POST['subscription'] == 'family') { $price = '00.01'; } $show_form = false; //PAYPAL BUTTON $paypalbutton = " <form name=\"paypal\"action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"> <input type=\"image\" src=\"https://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal - The safer, easier way to pay online!\"> <img alt=\"\" border=\"0\" src=\"https://www.paypal.com/en_US/i/scr/pixel.gif\" width=\"1\" height=\"1\"> <input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"> <input type=\"hidden\" name=\"business\" value=\"*********\"> <input type=\"hidden\" name=\"item_name\" value=\"".$_POST['login']."\"> <input type=\"hidden\" name=\"item_number\" value=\"".$_POST['subscription']."\"> <input type=\"hidden\" name=\"no_shipping\" value=\"1\"> <input type=\"hidden\" name=\"no_note\" value=\"1\"> <input type=\"hidden\" name=\"currency_code\" value=\"USD\"> <input type=\"hidden\" name=\"lc\" value=\"US\"> <input type=\"hidden\" name=\"bn\" value=\"PP-SubscriptionsBF\"> <input type=\"hidden\" name=\"a3\" value=\"".$price."\"> <input type=\"hidden\" name=\"p3\" value=\"1\"> <input type=\"hidden\" name=\"t3\" value=\"M\"> <input type=\"hidden\" name=\"src\" value=\"1\"> <input type=\"hidden\" name=\"sra\" value=\"1\"> </form>";?> <? if($signup->required_field($_POST['email']) == false) { echo "You must enter an email"; $show_form = true; } elseif ($signup->check_email($_POST['email']) == true) { echo "This email address is already registered in our system <br />"; $show_form = true; } elseif ($signup->check_login_exist($_POST['login']) == true) { echo "This username already exists in our system.. please select another one <br />"; $show_form = true; } elseif($_POST['subscription'] == 'single') { $price = '00.01'; $signup->create_subscription_a (); echo "You are now registered in our system. Please pay your subscription fee."; ?><br /> <? } elseif($_POST['subscription'] == 'partner') { $price = '00.01'; $signup->create_subscription_b (); echo "You are now registered in our system. Please pay your subscription fee."; ?><br /> <? } elseif($_POST['subscription'] == 'family') { $price = '00.01'; $signup->create_subscription_c (); echo "You are now registered in our system. Please pay your subscription fee."; ?><br /> <?php #THIS IS THE LINE THROWING THE ERROR } if($show_form == false) { echo $paypalbutton; } } ?> <script>document.paypal.submit();</script> Quote Link to comment https://forums.phpfreaks.com/topic/129462-parse-error/ Share on other sites More sharing options...
Rebel7284 Posted October 21, 2008 Share Posted October 21, 2008 the javascript function seems to have an extra paranthesis. Don't know why it's affecting the php code though. Quote Link to comment https://forums.phpfreaks.com/topic/129462-parse-error/#findComment-671156 Share on other sites More sharing options...
coldfiretech Posted October 21, 2008 Author Share Posted October 21, 2008 Thanks, i took out the extra ) from the javascript. But that didnt fix the error. It is still kicking me the same error! Any idea's? Quote Link to comment https://forums.phpfreaks.com/topic/129462-parse-error/#findComment-671159 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.