Hi !
I get "array" on my page when do this code...
<?php
$dbh=mysql_connect ('localhost', '****', '*****') or
die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ('bmjru_data');
$query = mysql_query('SELECT `club` FROM `tournres` WHERE dbid = 1 LIMIT 0, 30');
$res =mysql_fetch_row($query);
echo $res;
mysql_close();
?>
..And I couldn't understand because when i do this query in phpmyadmin i receive right results...