Re: [PHP] Re: Post URL ?

2005-07-18 Thread Jasper Bryant-Greene
Raz wrote: You can put the value in a hidden form field and submit it with JavaScript, but it's still not truly hidden, as it is still sent in a cleartext HTTP request. Not to mention being visible upon viewing the page source... Well, that depends. If it's user input that is added via JavaSc

[PHP] Re: Post URL ?

2005-07-18 Thread Mark Rees
""Joey"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > OK I understand the difference between a get & a post but if I just have a > URL/link which is calling a function like so: > > abc.com/display_information?customer_number=$value > > It passes to the display_information the custo

Re: [PHP] Re: Post URL ?

2005-07-18 Thread Raz
> You can put the value in a hidden form field and submit it with > JavaScript, but it's still not truly hidden, as it is still sent in a > cleartext HTTP request. Not to mention being visible upon viewing the page source... Raz -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] Re: Post URL ?

2005-07-18 Thread Jasper Bryant-Greene
Joey wrote: OK I understand the difference between a get & a post but if I just have a URL/link which is calling a function like so: abc.com/display_information?customer_number=$value It passes to the display_information the customer number visably, is there a way to do this where it's not v