carass Posted December 6, 2010 Share Posted December 6, 2010 How can i make echo "<b>Site:</b> ".$req_user_info['site']."<br>"; linkable The site raw fron the db contains an site url. Regards Link to comment https://forums.phpfreaks.com/topic/220810-how-can-i-make-echo-site-req_user_infosite-linkable/ Share on other sites More sharing options...
devilinc Posted December 6, 2010 Share Posted December 6, 2010 could you explain a bit more? if you want the word to be linked try this <?php echo "<b>Site:</b> ";?><a href="<?php $req_user_info['site'];?>" > <?php echo $req_user_info['site']."</a><br>";?> Link to comment https://forums.phpfreaks.com/topic/220810-how-can-i-make-echo-site-req_user_infosite-linkable/#findComment-1143553 Share on other sites More sharing options...
devilinc Posted December 6, 2010 Share Posted December 6, 2010 sorry there...they dont allow me to edit more than two times so i had to repost basically the same thing what i wrote above but i had MISSED the echo keyword <?php echo "<b>Site:</b> ";?><a href="<?php echo $req_user_info['site'];?>" > <?php echo $req_user_info['site']."</a><br>";?> Link to comment https://forums.phpfreaks.com/topic/220810-how-can-i-make-echo-site-req_user_infosite-linkable/#findComment-1143557 Share on other sites More sharing options...
carass Posted December 6, 2010 Author Share Posted December 6, 2010 thx a lot done Link to comment https://forums.phpfreaks.com/topic/220810-how-can-i-make-echo-site-req_user_infosite-linkable/#findComment-1143565 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.