Hi, why can't I pass more than one variable via url to the same page like this?
<?
function blah(){
global $PHP_SELF;
<a href=$PHPSELF?var1=foo&var2=bar>Click here</a>
}
...
...
if($var1==foo && $var2==bar){
print "It works";
}
?>
The above example works only if one variable is provided. Something to do with html again?Thank you very much.