Jump to content

[SOLVED] php firefox redirect link problem


shooff2332

Recommended Posts

I need help with this link which works fine in IE7 but will not redirect you to the page in FF. I think it is a path statement error that for some reason firefox has trouble with . Here is the statement that i am working with. Any and all help with this would be greatly appreciated.

 

print ("<TD$bgColor><FONT COLOR=#000000 SIZE=-1>

        <a href=\"includes\c12_cases_detail_id.php?case_id=$id&".SID."\"><B>$caseno</B></a></TD>");

Link to comment
https://forums.phpfreaks.com/topic/42701-solved-php-firefox-redirect-link-problem/
Share on other sites

Change your code to:

echo '<TD'.$bgColor.'><FONT COLOR="#000000" SIZE="-1">
        <a href="includes/c12_cases_detail_id.php?case_id='.$id.'"><B>'.$caseno.'</B></a></TD>';

Not sure what was going on in the link with SID though so i removed it.

Your HTML skills need to be a bit better though. I suggest you learn somemore HTML before working in PHP - it wont take long.

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.