Re: [PHP] pass parameter from client to server

2013-07-18 Thread Tamara Temple
On Jul 18, 2013, at 6:53 PM, Joshua Kehn wrote: > Could also use jquery instead True, but it's good to see the bare javascript as well in a demo. > > Best, > > -Josh > ___ > http://byjakt.com > Currently mobile > > On Jul 19, 2013, at 4:08, Tedd Sperling wrote: >

Re: [PHP] pass parameter from client to server

2013-07-18 Thread Joshua Kehn
Could also use jquery instead Best, -Josh ___ http://byjakt.com Currently mobile On Jul 19, 2013, at 4:08, Tedd Sperling wrote: > > One additional comment. > > Please change the javascript onclick to onchange -- that way the demo will > work for Chrome as well as ot

Re: [PHP] pass parameter from client to server

2013-07-18 Thread Tedd Sperling
One additional comment. Please change the javascript onclick to onchange -- that way the demo will work for Chrome as well as other Browsers. Cheers, tedd _ t...@sperling.com http://sperling.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:

Re: [PHP] pass parameter from client to server

2013-07-18 Thread Tedd Sperling
On Jul 18, 2013, at 6:07 PM, Daniel Brown wrote: > On Thu, Jul 18, 2013 at 6:04 PM, iccsi wrote: >> I have a select control on the form and need to pass value user select to my >> query parameter. >> I just realized that user entry value is client side and query parameter is >> server side.

Re: [PHP] pass parameter from client to server

2013-07-18 Thread Daniel Brown
On Thu, Jul 18, 2013 at 6:04 PM, iccsi wrote: > I have a select control on the form and need to pass value user select to my > query parameter. > I just realized that user entry value is client side and query parameter is > server side. > Are there any way to read client parameter to pass to serve

[PHP] pass parameter from client to server

2013-07-18 Thread iccsi
I have a select control on the form and need to pass value user select to my query parameter. I just realized that user entry value is client side and query parameter is server side. Are there any way to read client parameter to pass to server? You information and help is great appreciated, Re