Queries the current database using SQL.
resource db_query(string query)
NOTE: This is a SQL function. See <winterpostwiki>Database support</winterpostwiki> for more information.
A resource if the query delivers a valid result, FALSE otherwise.
// List the field(column) "Tel./Fax" in mytable
$result = db_query("SELECT 'Tel./Fax' FROM mytable");
$tel_fx_nrs = db_fetch_array($result);
$res = db_free_result($result);