Ho queste righe di codice
Il risultato è un bel Parse error: parse error, unexpected T_STRING, expecting ',' or ';' in .... nome file.Codice PHP:
$query = "SELECT id,data,titolo FROM news ORDER BY data DESC LIMIT 0,5";
$result = mysql_query($query, $db);
while ($row = mysql_fetch_array($result))
{ echo "<a href="view.php?id=$row[id]">" . date("j/n/y", $row[data]) . " - $row[titolo]</a><br>"; }
L'errore si riferisce alla riga che inizia con { echo "<a href
Cosa è sbagliato?