function sql_qquery ($sql, $debug = 0)
Another shortcut for mysql_query (), except it returns the retrieved data, and halt on any errors.
Example 1
$row = sql_qquery ("SELECT * FROM table WHERE idx='1' LIMIT 1");
print_r ($row);
This is a shortcut for:
$res = sql_query ("SELECT * FROM table WHERE idx='1'");
$row = sql_fetch_array ($res);
print_r ($row);
Subscribe to our newsletter for the latest updates and exciting promotions!