one of the things that are killing me is how to convert an existing mysql script to odbc.
take for instance this snip:
$result = mysgl_query("$sql limit $page,$limit");
I tried
$result = odbc_exec("$sql limit $page,$limit");
and received
Wrong parameter count for odbc_exec() in......
obviously I screwed up. why is there no clearly equivelent function to replace mysql_query()
or if there is what is it?
gawd odbc suxx0rs