Freedom-n-Democrazy Posted October 8, 2011 Share Posted October 8, 2011 I'm getting 2 x unexpected T_ENCAPSED_AND_WHITESPACE for: $query = "select zone from delivery where country = '$_POST['country']'"; Am I suppose to be braking out of '$_POST['country']' or something? I suspect I am: 1. They are the only two things in the code; 2. I got a gut feeling about those quadruple quotes. I've tried braking out with about 15 quote/full stop combinations, but it hasn't helped. Any suggestions? Quote Link to comment https://forums.phpfreaks.com/topic/248686-am-i-suppose-to-brake-out-of-php/ Share on other sites More sharing options...
ignace Posted October 8, 2011 Share Posted October 8, 2011 $query = "select zone from delivery where country = '{$_POST['country']}"; Quote Link to comment https://forums.phpfreaks.com/topic/248686-am-i-suppose-to-brake-out-of-php/#findComment-1277192 Share on other sites More sharing options...
Freedom-n-Democrazy Posted October 8, 2011 Author Share Posted October 8, 2011 Thanks man! It can also be done like this: $query = "select zone from delivery where country = '".$_POST['id']."'"; I'm FUMING at myself because I could have swore I tried this for my first attempt! I must have made a typo. Quote Link to comment https://forums.phpfreaks.com/topic/248686-am-i-suppose-to-brake-out-of-php/#findComment-1277198 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.