hi, i am thinking of using one table ceil to accept data retrived from database, after update of the data and then send them back to db.
like this:
...
<td width="40%"> Student name:</td>
<td width="40%"> <?php echo $name ?> ///---to accept the data
//retrived from db
<input type="text" name="stanme"> //--to accept input
//(modify) the value
//of $name then update
//it to db
</td>
....
I doubt that one ceil is used to accept retrived data and assigned to accept input will not work, but I don't know how to realize this function.
Does somebody know?
thnk u for your reply.
john


I think I didn't explanation my question clear, my questionis I want to retrive a set of data (say, personal information) and display them in a table format. then I want to update of the data in the table(say my phone No. my address...) then update.