T_IF error

guys m getting error as Parse error: syntax error, unexpected T_IF in /opt/lampp/htdocs/site/signup/viewsignup.php on line 109

and my code on line 109 is
[php]
-select-

>January >February >March >April

Hi there,

Get rid of the extra php after the opening tags on all lines and you should be fine.

[php]<option value=“01”<php php if($dd==“01”) echo " selected";?>>January[/php]

Should be:

[php]<option value=“01”<php if($dd==“01”) echo " selected";?>>January[/php]

Hope this helps.

Sponsor our Newsletter | Privacy Policy | Terms of Service