When i'm getting results from MySQL db I use mysql_fetch_object() function. What function is better and faster to us e in special cases?
Another possibility is using
mysql_fetch_array()
$data = mysql_fetch_object()
to display the result, $data->FieldName....
$data = mysql_fetch_array() to display the results,
$data['fieldName']....
"Better" is subjective, I prefer arrays to objects.
"Faster" is very much a non-issue because the speed difference is only a few milliseconds, and by the time you have to worry about saving 3 milliseconds per request, you're waaaay beyond what you can do with MySQL.
A forum, a FAQ, email notification, what else do you need?