Re: [PHP] Re: best way to handle a form with 60 fields !!!

2001-12-03 Thread Remigiusz Sokolowski
Krzysztof Kocjan wrote: > > > Fred wrote: > >> Third, it is ineffecient and unneccessary to put 60 fields in a single >> form. >> If you are using the GET method it probably will not work since it passes >> the variable names and values in the URL, which has a maximum length >> of 255 > >

Re: [PHP] Re: best way to handle a form with 60 fields !!!

2001-12-03 Thread Krzysztof Kocjan
Fred wrote: > Third, it is ineffecient and unneccessary to put 60 fields in a single form. > If you are using the GET method it probably will not work since it passes > the variable names and values in the URL, which has a maximum length of 255 In my mind maximum length 255 is not true. There

[PHP] Re: best way to handle a form with 60 fields !!!

2001-12-02 Thread Fred
First, if your goal is to enter the form information into a database, there is no need to ever register the form data as session variables. Simply insert the data into the database from the form and if you need some or all of the data on other pages pull it back out of the database. Second, it i