php-db | 2002122
Date: 12/18/02
- Next message: Ryan Jameson (USA): "RE: [PHP-DB] Now not selecting enough"
- Previous message: NIPP, SCOTT V (SBCSI): "[PHP-DB] FW: Oracle connectivity question..."
- Next in thread: Ryan Jameson (USA): "RE: [PHP-DB] Now not selecting enough"
- Maybe reply: Ryan Jameson (USA): "RE: [PHP-DB] Now not selecting enough"
- Maybe reply: SELPH,JASON (HP-Richardson,ex1): "RE: [PHP-DB] Now not selecting enough"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I am using the following script which I have used with minor variations,
several times before without any trouble. I have 3 items in my database but
the script only returns 1. I can change which one by leaving off the order
by filter, but can't get all three. Where am I going wrong. (PHP and MySQL).
$SQL = 'SELECT id, DATE_FORMAT(meetingdate, "%D %M %Y")as mtgdate FROM
boardprevious order by meetingdate desc ';
// execute SQL statement
$ret = mysql_db_query($dbname,$SQL,$link);
if (!$ret) { echo( mysql_error()); }
else {
// retrieve values
while ($row = mysql_fetch_array($ret)) {
$meetingdate = $row[mtgdate];
$id = $row[id];
}
}
echo ("<h5><A HREF=\"minutes_detail.php?id=$id\">$meetingdate</A></h5>");
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Ryan Jameson (USA): "RE: [PHP-DB] Now not selecting enough"
- Previous message: NIPP, SCOTT V (SBCSI): "[PHP-DB] FW: Oracle connectivity question..."
- Next in thread: Ryan Jameson (USA): "RE: [PHP-DB] Now not selecting enough"
- Maybe reply: Ryan Jameson (USA): "RE: [PHP-DB] Now not selecting enough"
- Maybe reply: SELPH,JASON (HP-Richardson,ex1): "RE: [PHP-DB] Now not selecting enough"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

