CodeMama Posted July 21, 2009 Share Posted July 21, 2009 Another issue I'm having is this...can't get this to show up as a link to go to the browse page: <a href="view.php?ID=<?php echo ($_SESSION['results'][$i]['ID'])?>><?php echo htmlspecialchars(stripslashes($_SESSION['results'][$i]['name'])); ?></a> tired of pulling my hair out... Link to comment https://forums.phpfreaks.com/topic/166811-getting-link-to-work/ Share on other sites More sharing options...
J.Daniels Posted July 21, 2009 Share Posted July 21, 2009 You are missing a closing quote for the href: <a href="view.php?ID=<?php echo ($_SESSION['results'][$i]['ID'])?>"><?php echo htmlspecialchars(stripslashes($_SESSION['results'][$i]['name'])); ?></a> Link to comment https://forums.phpfreaks.com/topic/166811-getting-link-to-work/#findComment-879619 Share on other sites More sharing options...
CodeMama Posted July 21, 2009 Author Share Posted July 21, 2009 Still doesn't work for some reason.... Link to comment https://forums.phpfreaks.com/topic/166811-getting-link-to-work/#findComment-879624 Share on other sites More sharing options...
J.Daniels Posted July 21, 2009 Share Posted July 21, 2009 Can you do a view source and post the output of the generated code? Link to comment https://forums.phpfreaks.com/topic/166811-getting-link-to-work/#findComment-879660 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.