j3rmain3 Posted October 26, 2006 Share Posted October 26, 2006 I have created the DB, the table shows up fine, the link appears but its destination is wrong.The first section is an absoulte url so it doesnt need to change, but i need the last bit of the url (the filename) to change depending on what has been put into the database.Hyperlink Codingecho "<a href=http://absoluteurl/ ( [b]What Can I Out Here To Make Filename Change)[/b] > ".$row[2]."I have been trying to figure it out but nothing seems to work.Most sites show[b]echo "<a href=http://".$row[1].">".$row['3'].";[/b]But this doesnt change the last section of the url, it just changes the whole url.Help ???Thanks,j3rmain3 Quote Link to comment https://forums.phpfreaks.com/topic/25192-hyperlinks/ Share on other sites More sharing options...
php_joe Posted October 26, 2006 Share Posted October 26, 2006 Does it work like this:[code]echo "<a href=\"http://$row[1]\">$row[3]</a>";[/code] Quote Link to comment https://forums.phpfreaks.com/topic/25192-hyperlinks/#findComment-114833 Share on other sites More sharing options...
.josh Posted October 26, 2006 Share Posted October 26, 2006 [quote author=j3rmain3 link=topic=112812.msg458022#msg458022 date=1161877471][b]echo "<a href=http://".$row[1].">".$row['3'].";[/b][b]But this doesnt change the last section of the url, it just changes the whole url.[/quote]that's because you've done http://$variable not http://www.yoursite.com/whatever/$variable Quote Link to comment https://forums.phpfreaks.com/topic/25192-hyperlinks/#findComment-114845 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.