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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.