Re: [PHP] Variables in forms

2008-06-23 Thread Daniel Brown
On Mon, Jun 23, 2008 at 6:24 AM, Ron Piggott <[EMAIL PROTECTED]> wrote: > > Fatal error: Call to undefined function: your_cleaning_function() This is the perfect example as to why NOT to copy-and-paste code from anywhere until you've checked it out yourself first. Jim placed the function

Re: [PHP] Variables in forms

2008-06-23 Thread Thijs Lensselink
Quoting Ron Piggott <[EMAIL PROTECTED]>: Jim what you sent is very helpful. I had an error message when I submitted the form with a POST your_cleaning_function gave me this error: Fatal error: Call to undefined function: your_cleaning_function() I am trying to save the ones that were check

Re: [PHP] Variables in forms

2008-06-23 Thread Nitsan Bin-Nun
Can you send us some of the code so we would be able to help you? On 23/06/2008, Ron Piggott <[EMAIL PROTECTED]> wrote: > > > Jim what you sent is very helpful. > > I had an error message when I submitted the form with a POST > > your_cleaning_function > > gave me this error: > > Fatal error: Call

Re: [PHP] Variables in forms

2008-06-23 Thread Ron Piggott
Jim what you sent is very helpful. I had an error message when I submitted the form with a POST your_cleaning_function gave me this error: Fatal error: Call to undefined function: your_cleaning_function() I am trying to save the ones that were checked to a mySQL table and then notify the user

Re: [PHP] Variables in forms

2008-06-22 Thread Jim Lucas
Ron Piggott wrote: I am writing a form right now. I would like to make the checkbox an array variable. The first part of the array is the component reference, the second part is the package reference. What name would you assign to it that I could use in processing the form in the PHP script

[PHP] Variables in forms

2008-06-22 Thread Ron Piggott
I am writing a form right now. I would like to make the checkbox an array variable. The first part of the array is the component reference, the second part is the package reference. What name would you assign to it that I could use in processing the form in the PHP script this posts to? Ron