Please help!
I'm using this udf for a project and it work very fine. i want to use my data after query, not only to post there in an array. example in php:
$sql = mysql_query("select title where id='prog@ndy'");
$res = mysql_fetch_row($sql); $value = $res[0]; //And now i can use $value wich contain request value
i want to do that kind of things in the udf, but the _MySQL_Fetch_Row() return empty when i try
thankx for the good job Prog@ndy!