Thread: Php links
View Single Post
Old 07-11-2007, 06:15 PM   #2 (permalink)
Vormund
 
Monster Techie

Join Date: May 2004

Location: Tucson, AZ, USA

Posts: 1,183

Vormund

Send a message via AIM to Vormund Send a message via MSN to Vormund Send a message via Yahoo to Vormund
Default Re: Php links

You use the echo/concatenate command.

Such as,
$link = "http://forum.example.com/index.php?showuser=" + $row['id'];
Then you use it wherever you want...by echoing/printing it.

Maybe...
Code:
<a href="http://forum.example.com/index.php?showuser=<?= $row['id'] ?>">View your forum CP</a>

__________________
Vormund is offline