Page 1 of 1

Editor

PostPosted: Wed Feb 13, 2008 8:04 pm
by mikeb
I would like to use in place editor to edit information in a table.

<tr id="<?=$res['id']?>">
<td><?=$res['time']?></td>
<td><?=$res['mon']?></td>
<td><?=$res['custid']?></td>
<td><?=$res['ticket']?></td>
<td><?=$res['status']?></td>
<td><?=$res['description']?></td>
</tr>

Some how I would need to pass the row id (colum row in my db), field name, and the new value to my db.

Any ideas?

Mysql PHP

Thanks,

Thanks

PostPosted: Thu Feb 14, 2008 1:36 pm
by mikeb
I have visited the links you have discussed. I have no issue editing a line here and there. The issue I am having is editin lines within a table. Somehow I have to pass rollid, columid, value that is being changed.

Thanks for your time.