myotch Posted February 14, 2011 Share Posted February 14, 2011 I'll walk you first through what is working: <?php echo($user['biz_site'] != '' ? "<h4>Web Site</h4>" . $user['biz_site'] : ""); ?> In a results page, the code renders something that looks like: Web Site http://www.somecoolsite.com What I'd like instead is something like this: Web Site Visit Site ...where the "visit site" links to the site. I'm trying to address a problem of some sites, especially government sites, having 75+ character-long addresses, which messes up the finite space I have allotted for site addresses. Everything I've tried thus far has rendered blank white pages. (the original code posted up top does not produce a hyperlink) Link to comment https://forums.phpfreaks.com/topic/227590-mysql-stored-address-as-hyperlink-in-a-results-page/ Share on other sites More sharing options...
litebearer Posted February 14, 2011 Share Posted February 14, 2011 Perhaps... <?php if($user['biz_site'] != ''){ ?> <h4>Web Site</h4> <a href="<?PHP echo $user['biz_site']; ?>">Visit</a> <?PHP } ?> Link to comment https://forums.phpfreaks.com/topic/227590-mysql-stored-address-as-hyperlink-in-a-results-page/#findComment-1173895 Share on other sites More sharing options...
myotch Posted February 14, 2011 Author Share Posted February 14, 2011 worked like a charm! Link to comment https://forums.phpfreaks.com/topic/227590-mysql-stored-address-as-hyperlink-in-a-results-page/#findComment-1173912 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.