Is there any way in php to hide the variables that are passed thru Href. Problem is I don't want the varaibles as well as the URLs to appear in browser address. say a link http://www.abc.com/afloder/xyz.php?id=12name=xy to appear as http://www.abc.com/xyz4657.....anything but not as above
If you are using Apache server, you can use Rewrite Engine to have nice looking URLs for visitors. These URLs are then transformed into physical bad-looking URLs. Transofmations are been done by regular expresions that you have to create.
Why not use sessions? That way, the only thing in the URL is an opaque session identifier--and if sessions are able to use cookies, not even the session ID is shown.
Yes,Apache server is being used. How to use Rewrite Engine to have nice looking URLs for visitors.Can u be more specific. Thank u
http://httpd.apache.org/docs/mod/mod_rewrite.html