I have this query that I performing on the database. Unfortunately, it is returning all the same information for all rows.
The table has three rows of data in it Tbl_ID Tbl_Name Tbl_Age 1 Horse 21 2 Cow 30 3 Eagle 14 My php script looks like this. $TableName = "PUB.table1"; $Link = odbc_connect ($DBName,$User,$Password); $Query = "SELECT * from $TableName"; $Results = odbc_do($Link, $Query); print odbc_result_all($Results); My browser results are as follows ... Tbl_ID Tbl_Name Tbl_Age 1 Horse 21 1 Horse 21 1 Horse 21 I am not sure what I am doing wrong here. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php