Joshv1288 Posted August 5, 2008 Share Posted August 5, 2008 Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/h3swat/public_html/livereg.php on line 10 Parse error: syntax error, unexpected ':' in /home/h3swat/public_html/livereg.php on line 10 line 10 $url = 'http://h3swatlg.exofire.net/profile.php\'; HELP? Quote Link to comment Share on other sites More sharing options...
budimir Posted August 5, 2008 Share Posted August 5, 2008 Use double quotes $url = "http://h3swatlg.exofire.net/profile.php\"; Quote Link to comment Share on other sites More sharing options...
Ace Jon Posted August 5, 2008 Share Posted August 5, 2008 Show line 9, and don't escape the end quote. Quote Link to comment Share on other sites More sharing options...
Joshv1288 Posted August 6, 2008 Author Share Posted August 6, 2008 ok fixed that now i get this Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/h3swat/public_html/livereg.php on line 13 line 13 at the top $user = $_POST[\'username\']; $pass = $_POST[\'password\']; $pass2 = $_POST[\'password2\']; $name = $_POST[\'name\']; $age = $_POST[\'age\']; $loc = $_POST[\'loc\']; $gender = $_POST[\'gender\']; $email = $_POST[\'email\']; $gt = $_POST[\'GT\']; Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted August 6, 2008 Share Posted August 6, 2008 Why are all the quotes in your code escaped, no quotes which define a string should be escaped. Where did you get the code? Have you copied this code from some website? Quote Link to comment Share on other sites More sharing options...
LemonInflux Posted August 6, 2008 Share Posted August 6, 2008 $user = $_POST['username']; $pass = $_POST['password']; $pass2 = $_POST['password2']; $name = $_POST['name']; $age = $_POST['age']; $loc = $_POST['loc']; $gender = $_POST['gender']; $email = $_POST['email']; $gt = $_POST['GT']; ---------------- Now playing: Foo Fighters - Disenchanted Lullaby via FoxyTunes Quote Link to comment 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.