Hi im trying to write the data from my database and this the code thats meant to be doing it but i get two of the 'Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given' and dont know why????
$data = mysql_query("SELECT * FROM teams");
$result = mysql_fetch_array($data);
while($result = mysql_fetch_array($data)) {
print "<b>Name:</b>" .$result['Team Name'] . " ";
}