I’m not quite sure what you trying to achieve. Is this what your IF condition is supposed to mean?
If $country is set to anything but empty, print the table, otherwise do nothing
If so, then change your condition into:
PHP Code:
if ($country) {
Anyway I think the main reason you are getting no PHP from your script is because you are using the wrong syntax opener. The correct PHP opening is <?php and closing is ?>. It depends on your server settings, but just to be on the safe side use that instead of <? and ?>.
__________________
THE FORCE is with me at last! All I need now is some TALKUPATION ;)
|