yzerman Posted May 4, 2007 Share Posted May 4, 2007 You are still using invalid HTML, this is why its not parsing the <a href> link. The proper way to do this is while($row = mysql_fetch_assoc($result)) { echo "<td class='FieldName'><a href=\"/MyPHP/Service/ST/NewPage.php?start=".$row['Number']."\">".$row['Number']."</a></td>"; echo "<td class=FieldName>".$row['STID']."</td>"; echo "<td class=FieldName>".$row['Name']."</td>"; echo "<td class=FieldName>".$row['Address']."</td>"; echo "</tr>"; } echo "</table>"; Basically I changed: echo "<td class='FieldName'><a href='/MyPHP/Service/ST/NewPage.php?start=".$row['Number'].">".$row['Number']."[/url]</td>"; To echo "<td class='FieldName'><a href=\"/MyPHP/Service/ST/NewPage.php?start=".$row['Number']."\">".$row['Number']."</a></td>"; Link to comment https://forums.phpfreaks.com/topic/49941-solved-make-hyperlink-in-dynamic-listing/page/2/#findComment-245221 Share on other sites More sharing options...
oceans Posted May 4, 2007 Author Share Posted May 4, 2007 echo "<td class='FieldName'><a href=\"/MyPHP/Service/ST/NewPage.php?start=".$row['Number']."\">".$row['Number']."</a></td>"; no hyper link or result comes out, Link to comment https://forums.phpfreaks.com/topic/49941-solved-make-hyperlink-in-dynamic-listing/page/2/#findComment-245225 Share on other sites More sharing options...
oceans Posted May 4, 2007 Author Share Posted May 4, 2007 Thanks you :-* I thanks all three of you for helping :-* :-* :-* Link to comment https://forums.phpfreaks.com/topic/49941-solved-make-hyperlink-in-dynamic-listing/page/2/#findComment-245228 Share on other sites More sharing options...
Silverado_NL Posted May 4, 2007 Share Posted May 4, 2007 did it work???? Link to comment https://forums.phpfreaks.com/topic/49941-solved-make-hyperlink-in-dynamic-listing/page/2/#findComment-245230 Share on other sites More sharing options...
oceans Posted May 4, 2007 Author Share Posted May 4, 2007 YESYESYESYESYES Link to comment https://forums.phpfreaks.com/topic/49941-solved-make-hyperlink-in-dynamic-listing/page/2/#findComment-245233 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.