I'm having a funny problem when querying Oracle via ODBC using PHP3.
When I get a sort of large result (around 100 rows), PHP won't run a simple routine to populate a <table>. (Just a little fetch_row loop that says assign field 1 to $variable[], and so on).
When the result is smallish, this works fine; php let's me populate a table with the results (which I've put into the array, above). When the result is larger, it won't let me create my table.
Strangely, if I just do an odbc_result_all, it dumps all of the records ok. This won't work in my scenario, however, because each row has a field (<td>) that I need to assign a hyperlink to.
Any thoughts on this would be welcome. Thanks for your help,
Derek