Re: [nyphp-talk] Javascript & PHP

2007-06-21 Thread Morgan Craft
really hard to debug this without any code provided. It could be numerous things... Your javascript could be clearing your form data before submit? How do you have the onEvent handles configured for your javascript? Also, there could be things wrong with your server-side logic. Do you hav

Re: [nyphp-talk] Javascript & PHP

2007-06-21 Thread Rudy
You are suffering from the split-brain syndrome of web development. PHP as you know is a server-side while Javascript is client-side application. The left side of the brain needs to communicate to the right side of the brain. For the PHP to see the variables they must be posted to the server

Re: [nyphp-talk] Javascript & PHP

2007-06-21 Thread Ken Robinson
Quoting PaulCheung <[EMAIL PROTECTED]>: I have put together an HTML form that uses Javascript which works well. However when I fill it in and fire it off to my PHP script (which for the purpose of testing simply echos what was entered in to the form) it cannot find the entered data; But

[nyphp-talk] Javascript & PHP

2007-06-21 Thread PaulCheung
I have put together an HTML form that uses Javascript which works well. However when I fill it in and fire it off to my PHP script (which for the purpose of testing simply echos what was entered in to the form) it cannot find the entered data; But when I strip out the Javascript and the fields t