Hi,
I have found error like this:
Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC Microsoft Access Driver] Syntax error in ORDER BY clause., SQL state 37000 in SQLExecDirect in C:\Program Files\xampp\htdocs\MS\View.php on line 120
Warning: odbc_fetch_array(): supplied argument is not a valid ODBC result resource in C:\Program Files\xampp\htdocs\MS\View.php on line 123
this is code error of my php code :
$result1 = odbc_exec($connID, "SELECT * from tblSection ORDER BY SectionID ASC LIMIT $offset,$count"); on line 120 //(This code I wish to commutation of page on my php code)
while($r = odbc_fetch_array($result1)) on line 123 //( this looping on my pdp code)
I ever done to using code above in the Mysql database. I did't have wrong about that. How to solution about that?
Thanks in advance
discussion14php