On 9/25/06, whoisquilty <[EMAIL PROTECTED]> wrote: > When I pass variables to a new page, my URL string becomes impossibly long. > I'd like > to hide the variables in the URL. How would I do that?
There are several ways to do that: 1-Use POST instead of GET for the form method; 2-Use frames so the URL in address bar is always the same; 3-Rewrite rules in apache can also solve this; Personally, I'd go for #1, although that's not always an option. -- Bruno Lustosa <[EMAIL PROTECTED]> ZCE - Zend Certified Engineer - PHP! http://www.lustosa.net/ Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/php-list/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
