Nieuw lid |
|
Ok, ik heb nu eindelijk alles in orde met phpmyadmin in mysql,
en ik ben nu bezig met een nieuwspagina...
maar meteen de eerste keer dat ik het probeerde kreeg ik deze error:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\wamp\www\Nieuws\index.php on line 45.
dit is men index.php:
...
<?php
$db = mysql_connect("localhost","easyscripts","scooby") or die ("Verbinding mislukt");
mysql_select_db("nieuws",$db);
$news_SQL="SELECT * FROM nieuws ORDER BY news_datetime DESC";
$news_result=mysql_query("news_SQL");
?>
<?php
while($news=mysql_fetch_array($news_result)){
?>
<table width="400" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<font size="2" color="FF0000"><?php echo $news['news_datetime'] ?></font><br><b>
<?php echo $news['news_header'] ?></b>
</td>
</tr>
<tr>
<td>
<font size="2" color="FF0000"><?php echo $news['news_main'] ?></font>
</td>
</tr>
<tr>
<td>
<hr width="400" size="1" noshade color="FF0000">
</td>
</tr>
</table>
<?php
}
mysql_close();
?>
...
... <?php $db = mysql_connect("localhost","easyscripts","scooby") or die ("Verbinding mislukt"); $news_SQL="SELECT * FROM nieuws ORDER BY news_datetime DESC"; ?> <?php ?> <table width="400" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td> <font size="2" color="FF0000"> <?php echo $news['news_datetime'] ?></font><br><b> <?php echo $news['news_header'] ?></b> </td> </tr> <tr> <td> <font size="2" color="FF0000"> <?php echo $news['news_main'] ?></font> </td> </tr> <tr> <td> <hr width="400" size="1" noshade color="FF0000"> </td> </tr> </table> <?php } ?> ...
en ik heb een database die nieuws noemt met daarin een tabel die nieuws noemt.
Alvast bedankt
-Coolbean-
|