ballouta Posted September 10, 2009 Share Posted September 10, 2009 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 More sharing options...
phpretard Posted September 10, 2009 Share Posted September 10, 2009 // 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 More sharing options...
ballouta Posted September 11, 2009 Author Share Posted September 11, 2009 Hi I will make a test on your code, if i have other qustion i will post it with some code. Thank\ you Link to comment https://forums.phpfreaks.com/topic/173765-editing-several-rows/#findComment-916899 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.