I'm trying to run mysql_fetch_arr ay with a variable in place of the
optional result type constant, like so
mysql_fetch_arr ay($result, $rtype) where, obviously, $rtype is one of the
three valid values for the result type. This throws an error:
"mysql_fetch_ar ray() [function.mysql-fetch-array]: The result type should
be either MYSQL_NUM, MYSQL_ASSOC or MYSQL_BOTH."
I'm not quite sure what the issue here is, other than that I'm replacing a
constant with a variable. I'm looking for a solution that will allow me to
(variably) be able to dictate this value.
TIA
--
Karl Groves
optional result type constant, like so
mysql_fetch_arr ay($result, $rtype) where, obviously, $rtype is one of the
three valid values for the result type. This throws an error:
"mysql_fetch_ar ray() [function.mysql-fetch-array]: The result type should
be either MYSQL_NUM, MYSQL_ASSOC or MYSQL_BOTH."
I'm not quite sure what the issue here is, other than that I'm replacing a
constant with a variable. I'm looking for a solution that will allow me to
(variably) be able to dictate this value.
TIA
--
Karl Groves
Comment