If index.php is the index page of your website, then you do not need to
specify it at all.
i.e. www.whatever.com/index.php?uName=Kris
is functionally equivalent to www.whatever.com?uName=Kris
A way to get rid of the variables passed in the query string is to use
POST instead of GET as the method of your HTML form.
Hope this helps,
Marco
--
------------
php|architect - The magazine for PHP Professionals
The first monthly worldwide magazine dedicated to PHP programmers
Come visit us at http://www.phparch.com!
--- Begin Message ---
Hi
When I pass variables to a new page in the address bare of the browser it looks like
www.whatever.com/index.php?uName=Kris&passWd=1234
How can I hide this so it's just
www.whatever.com/index.php or even better just
www.whatever.com
thanks
Kris
--- End Message ---
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php