shooff2332 Posted March 14, 2007 Share Posted March 14, 2007 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 More sharing options...
papaface Posted March 14, 2007 Share Posted March 14, 2007 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. Link to comment https://forums.phpfreaks.com/topic/42701-solved-php-firefox-redirect-link-problem/#findComment-207186 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.