Log in

View Full Version : sending two id's to next page



auriaks
11-24-2009, 07:47 PM
hi,
long time I was using file.php?id=($id) and $_GET['id'] to send variable to next page. But now I need to send TWO variables... How I can do that?
Thanks.

bluewalrus
11-24-2009, 09:16 PM
file.php?id=($id)&id2=($id2)
$_GET['id'];
$_GET['id2'];
Pretty sure it's that.

auriaks
11-24-2009, 09:25 PM
Thanks :)