|
View:
New views
3 Messages
—
Rating Filter:
Alert me
|
|
|
LinksHello.. I searched for an answer on the simple quesiton but I am only finding complex answers... I simply just want to add a link in my database so when my results display you can see the information.. and when they click the link it takes them to the webpage of the article. I tried inserting User sees this text but when the results page shows.. it doesnt show the hyperlink.. Thank you all very much!
-Darren Thanks again! |
|
|
Re: Links:|
if i want link 3, $result = mysql_query("SELECT address FROM db.links WHERE link_id=3"); $foo = mysql_fetch_assoc($result); echo '<a href="'.$foo['address'].'">this is link 3</a>'; On 3/7/07, StainOnRug <StainOnRug@...> wrote: > > > Hello.. I searched for an answer on the simple quesiton but I am only > finding > complex answers... I simply just want to add a link in my database so when > my results display you can see the information.. and when they click the > link it takes them to the webpage of the article. I tried inserting > examplesite.com User sees this text but when the results page shows.. it > doesnt show the hyperlink.. Thank you all very much! > > > > -Darren > > Thanks again! > -- > View this message in context: > http://www.nabble.com/Links-tf3366303.html#a9365950 > Sent from the PHP - General mailing list archive at Nabble.com. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- |~ fedt ~| |
|
|
Re: LinksYou have to add the href tags in the html output for the text to be a
link........ in your while statement or whatever your using to obtains the links from the database already, instead of just displaying $link_value, change it to <a href="$link_value">$link_value</a> Jake ----- Original Message ----- From: "StainOnRug" <StainOnRug@...> To: <php-general@...> Sent: Wednesday, March 07, 2007 7:19 PM Subject: [PHP] Links > > Hello.. I searched for an answer on the simple quesiton but I am only > finding > complex answers... I simply just want to add a link in my database so when > my results display you can see the information.. and when they click the > link it takes them to the webpage of the article. I tried inserting > examplesite.com User sees this text but when the results page shows.. it > doesnt show the hyperlink.. Thank you all very much! > > > > -Darren > > Thanks again! > -- > View this message in context: > http://www.nabble.com/Links-tf3366303.html#a9365950 > Sent from the PHP - General mailing list archive at Nabble.com. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php |
| Free embeddable forum powered by Nabble | Forum Help |