On Mon, 2005-01-03 at 10:54 -0300, Pablo D Marotta wrote: > Hi there.. > I need to pass variables to a page through an html link. > I do it like this: > > <A href="Extra/excelListing3.php?buildQuery=<?php echo $buildQuery > ?>">Export</A> > > where 'buildQuery' is the variable IÂm passing. > > In the destination page, I capture it with $_GET and thatÂs it. > > I want to know if there is any way of doing it without showing the variables in > the direction bar. > > Thanks! > > Pablo You can store it in POST, GET, in the SESSION, track the user in the database... lots of ways to do it. POST might be the easiest route without showing in the URL. -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@xxxxxxxxxxxxxxx * 503.351.4730 | blog.planetargon.com * PHP/PostgreSQL Hosting & Development * --- Now supporting PHP5 --- ****************************************/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php