sradha
03-06-2010, 06:08 PM
Hellooo.... Can anyone tell me about how to pass more than one value through header location...I gave it like header('location:desc.php?qd=$qpid&sub=$sub");...but I don't thik it's working...Is the format that I have given right??
masterofollies
03-06-2010, 08:01 PM
You can do variables into sessions, or also hidden forms.
rangana
03-06-2010, 10:20 PM
I gave it like header('location:desc.php?qd=$qpid&sub=$sub");...but I don't thik it's working...Is the format that I have given right??
Try to use double-quote here:
header("location:desc.php?qd=$qpid&sub=$sub")
...that should work fine then. That way, variables are parsed.