I have this script in ASP and I need to translate it in PHP and PERL:
<% if bSearchEngine then %>
<div style="display:none">
<h1><font face="Arial, Helvetica, sans-serif">ASP script translated into PHP and PERL</font></h1>
</div>
<% end if %>
I dont know much about PHP but I tried to translate it and I got this:
<? if ($bSearchEngine) { ?>
<div style="display:none">
<h1><font face="Arial, Helvetica, sans-serif">ASP script translated into PHP and PERL</font></h1>
</div>
<? } ?>
I am not sure if it is right but can someone tell me if this is the right translation?? Next to that can somebody translate it into PERL because I dont know anything about that language. Thank you very much in advance!!
Richie