Re: Need help with modifying values

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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. See below.

HTH

Cheers
Matt

----- Original Message ----- 
From: "Anasta" <neretlis@xxxxxxxxxxxxxx>
To: <php-general@xxxxxxxxxxxxx>
Sent: Sunday, December 18, 2005 8:21 AM
Subject:  Need help with modifying values



> while ($myrow = mysql_fetch_array($result)) {
>
>  echo "<tr><td>" . $myrow['Name'] . "</td>";
>  echo "<td>" . $myrow['Rating'] . "</td>";
>  echo "<td bgcolor='cyan'> <a href='modify_values2.php?id=" . $myrow['ID']
.
> "'>Modify</a></td></tr>";
> }
> ?>
+++++++++++++++++++++++++++++
>
>
> $myrow = mysql_fetch_array($result);
>
>  $Name = $myrow['Name'];
>  $Rating = $myrow['Rating'];
>
> ?>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux