[PHP] Need help with modifying values

2005-12-18 Thread Anasta
The first script works ' modify_values.php' showing the values and a modify link next to each but the next script it parses to 'modify_values2.php' is obviously not working. I have tried to modify it from another script and cant get it to pass the correct variables-- it always shows the first

Re: [PHP] Need help with modifying values

2005-12-18 Thread Matt Stone
: Sunday, December 18, 2005 8:21 AM Subject: [PHP] Need help with modifying values while ($myrow = mysql_fetch_array($result)) { echo trtd . $myrow['Name'] . /td; echo td . $myrow['Rating'] . /td; echo td bgcolor='cyan' a href='modify_values2.php?id= . $myrow['ID'] . 'Modify/a/td/tr

Re: [PHP] Need help with modifying values

2005-12-18 Thread programmerdelhi
[EMAIL PROTECTED] To: php-general@lists.php.net Sent: 18 December 2005 2:49 Subject: Re: [PHP] Need help with modifying values There's a big difference between the first and second scripts your using. The second one isn't using a while loop so will only return the first row in the recordset