Click to See Complete Forum and Search --> : Urgent -Form value not being passed


mozgheib
06-14-2005, 03:24 PM
Hello,

I have a table that is populated froma recordset. Table rows
are dynamic while not eof.

Now I give the user a chance to modify an entry inside a row
by typing in a textarea. My problem is, I need the value that
was populated ino the text area by the record set and also the
newly entered changes into the area.

I tried using href and submit with request.form and request.query
string the value picked up is the value populated by the recordset.

How can I make the newly entered/modified value captured and sent
to another form or variable.

Urgent.

phpnovice
06-14-2005, 05:43 PM
Just put the entire dynamic table inside of a FORM and submit the form to the server. This will pick up all data in the form and send it to the server.

mozgheib
06-15-2005, 01:15 AM
It won't work like that take a look.

Field1 field2 field3 field4 delete modify add
field1 field2 field3 fiedl4 delete modify add

fields 1,2,3 and 4 are textboxes. populated by a recordset
while not eof. delete and add work. Modify does not work.
I am using href for modify becz submit will submit all the rows
and I only want to submit the row I selected.

phpnovice
06-15-2005, 08:50 AM
To submit a single row, you will have to create a FORM for each row.