If I use database other than MySQL (for example) InterBase Can I still use functions like mysql_query() or mysql_fetch_array()
thank you
You can't use mysal functions but there are similar functions such as ibase_query, ibase_fetch_row.
How would i do that in Oracle? I've got:
$query = OCIParse($conn,"select * from spr_problemdata"); OCIExecute($query);
but i want to print a certain row like i would in mysql..
i want to be able to do a: echo myrow[0], etc.
any suggestions?
I haven't used Oracle and PHP but I beleive you use ora_fetch and ora_getcolumn.