Suppose you are using PHP.
A link like this:

http://yourdomain.com/yourpage.php?var1=value1&var2=value2&var3=value3

will do the trick.
And in the page that receives this link (yourpage.php that is), use $_GET[]
to get the value:

$var1 = $_GET["var1"];
$var2 = $_GET["var2"];
$var3 = $_GET["var3"];

Tony S. Wu


Manuel at [EMAIL PROTECTED] wrote:

> 
> I recently discovered that you can pass variables through hyperlinks. (I
> didn't know this could be done) This will be very helpful for the project I'm
> working on but I cannot find any information on this subject.
> 
> Does anybody know where I can find information on the syntax and limitations
> of this feature? 
> 
> 
> 
> ---------------------------------
> Do You Yahoo!?
> New! SBC Yahoo! Dial - 1st Month Free & unlimited access




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to