|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-03-24 19:19 UTC] sniper@php.net
[2003-03-31 01:59 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 15:00:01 2025 UTC |
I have a standard php installation, latest 1.3 release on a win XP box, using ODBC to access a Paradox database. Connection code: $myDB = odbc_connect("llcs", "", ""); $rs = odbc_exec($myDB, $Property_SQL); $count = 0; To show Results, I use: while (odbc_fetch_into($rs, $my_array)) { ?> <tr> <td> <?php echo $my_array[0]; ?> </td> .... SQL Query example that works: Select Firstname, Surname, Age from Users where Age=50 Returns alot of records, which is correct. I then take an example of a record that I got back, eg: Craig, Lister, 50, and then try this SQL: Select Firstname, Surname, Age from Users where Surname = "Lister" That returns ONLY the first record. Eg, Andrew, Lister, 27 It seems to be only returning the first record when I search for strings, but on numerical searches, it works fine. You can see this at http://land.strand.serverbox.org ... use the 'Electoral Search'. Thank you, Craig