The error suggests that mysql_query() returned FALSE as mentioned is one possible return value here. You need to extract more information to properly diagnose the failure:
$query = ''SELECT * FROM internet_shop';
$result = mysql_query($query);
if (!$result) {
die("'$query' failed with error: " . mysql_error());
}
deceptikon
Challenge Accepted
3,426 posts since Jan 2012
Reputation Points: 822
Solved Threads: 473
Skill Endorsements: 56