Jump to content

Editing Several Rows


ballouta

Recommended Posts

Hello

 

I need to edit several rows in the same time,

e.g: books table

ISBN    Title    Pages  Price

 

if it was only one row, I know how to display it in a form to edit and then submit it. But in my case how i will display them in a form so when I submit it the code will know each row related info?

Do I have to use array? If yes what is its syntax in the editing form?

 

Many thanks

Link to comment
https://forums.phpfreaks.com/topic/173765-editing-several-rows/
Share on other sites


// when the form submits
$update_the_same_row=mysql_unbuffered_query("update books set 

ISBN='".$_POST['ISBN']."', Title='".$_POST['Title']."', Pages='".$_POST['Pages']." 

where row_id='".$_POST['row_id']."' ") or die(mysql_error());


// goes in your form

<input type="hidden" name="row_id" value="<? echo $row_id; ?>" />

 

Is this what you mean?  It's difficult to understand without the code...

Link to comment
https://forums.phpfreaks.com/topic/173765-editing-several-rows/#findComment-915988
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.