PHP expert |
|
Ik krijg een error en 'bergrijp' deze niet echt -->
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/big-bug.nl/www/profiel/show.php on line 12
En dit is het scriptje:
<html>
<head>
<title></title>
</head>
<body>
<?php
include ('config.php');
$query="mysql_query(SELECT * FROM namen)";
while($noam = mysql_fetch_array($query)) {
echo $noam['naam']; }
?>
</body>
</html>
<html> <head> <title></title> </head> <body> <?php include ('config.php'); $query="mysql_query(SELECT * FROM namen)"; ?> </body> </html>
Ziet iemand wat er fout is?? Bvd!
|