Re: [PHP] Bulk table updates

2004-06-04 Thread Marek Kilimajer
Robert Sossomon wrote: I use a separate page to do the addition of information to my DB currently, the whole set of information is being re-written as I type this, but where I am stuck is getting the whole thing to be parsed through then just one line. The code I currently use is as follows: $get

Re: [PHP] Bulk table updates

2004-06-04 Thread Dennis Seavers
data, but you should see what I am getting at. > > Thanks, > Robert > > > > Use a SELECT query to get the values (SELECT * FROM table) and a table > > that has form input fields in the cells. The values for the form fields > > would be based on the array you get from t

Re: [PHP] Bulk table updates

2004-06-03 Thread Robert Sossomon
t; if (isset ($submit)) { > $query = "INSERT INTO . . . "; > $query_result = @mysql_query ($query); > } > > If the form is submitted, then the values in all the form fields > (including any changes) will go into the database. If it's not submitted, > the c

Re: [PHP] Bulk table updates

2004-06-03 Thread John W. Holmes
Robert Sossomon wrote: I am looking for a tutorial or a already created class or file that I can use to learn how to create a form that is populated from a database table that can be edited in every row and column and takes only 1 SAVE button to upload all the changes. Look on phpclasses.org or in

Re: [PHP] Bulk table updates

2004-06-03 Thread deseavers
right direction. -Original Message- From: Robert Sossomon <[EMAIL PROTECTED]> Sent: Jun 3, 2004 6:23 PM To: [EMAIL PROTECTED] Subject: [PHP] Bulk table updates I am looking for a tutorial or a already created class or file that I can use to learn how to create a form that is populated from a datab

[PHP] Bulk table updates

2004-06-03 Thread Robert Sossomon
I am looking for a tutorial or a already created class or file that I can use to learn how to create a form that is populated from a database table that can be edited in every row and column and takes only 1 SAVE button to upload all the changes. Thanks, Robert -- PHP General Mailing List (http: