Dit is mijn fout: Parse error: syntax error, unexpected T_LNUMBER, expecting ',' or ';' in /home/xtahosted/domains/connectxs.org/public_html/testnieuws.php on line 17
Mijn source:
<html>
<head>
<meta http-equiv="Content-Language" content="nl-be">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Door</title>
</head>
<body>
<?
include "config.php";
$select = "SELECT * FROM updates ORDER by id DESC LIMIT 0,10";
$query = mysql_query($select) or die (mysql_error());
while ($list = mysql_fetch_object($query)) {
echo "<table width="50%" border="1" height="192" bordercolor="#000000">
<tr>
<td class="titel" width="34%" height="21">Door:$list->naam @$list->datum</td>
<td class="titel" width="64%" height="21">$list->titel</td>
</tr>
<tr>
<td class="p" height="21">Afbeelding:</td>
<td class="datum" height="21" valign="top">Bericht:</td>
</tr>
<tr>
<td class="p" height="56"><img border="0" src="$list->afbeelding" width="100" height="100"></td>
<td class="p" height="56">$list->bericht</td>
</tr>
<tr>
<td class="p" valign="top"><hr width="100%" size="2" noshade> </td>
<td class="p" valign="top"><hr width="100%" size="2" noshade></td>
</tr>
</table><br><br>";
}
echo "<br>";
?>
</body>
</html>
1.357 views