Jump to content

Am I suppose to brake out of PHP?


Recommended Posts

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?

Link to comment
https://forums.phpfreaks.com/topic/248686-am-i-suppose-to-brake-out-of-php/
Share on other sites

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.