Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing more than 1 Var through URL 1

Status
Not open for further replies.

bam720

Technical User
Sep 29, 2005
289
US
Sorry for not searching but I don't know what its called? How can i pass more than one parameter through the URL?
Code:
<a href="/equipinfo.php?ClientName=$CName?ClientLoc=$Addy?EquipName=$Result">"

Also what is this method called?
 
Hi,

The second, third, fourth, etc. should not use questionmark.
They should be the Ampersand.

ALSO: HTML-ENTITIES

Code:
<a href="/equipinfo.php?ClientName={$CName}&amp;ClientLoc={$Addy}&amp;EquipName={$Result}">

Good luck and good night!

Olav Alexander Mjelde
Admin & Webmaster
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top