Jump to content

Question of insert item in 'While'


mrwhiteboy

Recommended Posts

Hi all, I need some help. THanks.

I have 2 data base, member and list.
I made a table show my member list, and they have own textbox for units and price.

eg.(index.php)

<form name="form1" method="post" action="modify.php">
<?
$query=mysql_query("select * from member");
while (list($no,$id)=mysql_fetch_rows($query))
{
echo "<tr><td>".$id;
echo "<td><input type=text name=price>";
echo "<td><input type=text name=units>";
}
echo "<tr><td><input type=submit name=submit>";
?>

then I want insert member, price and units into the 'list',
How to define price and unit set to each member?

Thanks you so much. I thing about this over 4 days but can't solve.
Link to comment
https://forums.phpfreaks.com/topic/3984-question-of-insert-item-in-while/
Share on other sites

  • 2 years later...

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.