[PHP-DB] data_seek and fetch_row

2002-10-28 Thread V919V
Hi, I got a query and I want to jump through the results.Here's my query: $various_query = $db-query( SELECT int_param5, char_param1, is_admin_pass

Re: [PHP-DB] data_seek and fetch_row

2002-10-28 Thread Peter Beckman
One problem: you are using a database wrapper for which you have provided no information. $db-query is a function of a class $db, but we don't know what that function does exactly. Anyway, the $queryid doesn't contain a valid MySQL result resource. So go back a few steps. Is $various_query a

Re: [PHP-DB] data_seek and fetch_row

2002-10-28 Thread V919V
Yeah,it returns Resource id #2.My whole wrapper works,except of this function ;) Hmm...I tried this: function seek( $result, $row ) { $result = mysql_data_seek( $result, $row ); print br.$result; return