Salve, ho scritto un piccolo script in php ma ottengo l'errore di virgola mancante nella linea 12, da cosa puo' essere dovuto? Grazie
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head><meta content="text/html; charset=utf-8" http-equiv="Content-Type" /><title>Gruppo di Pittura</title></head>
<body>
<?print "<table style='width: 100%'>";
for (f = 1; F<= 24;F++) { (qui c'è l'errore)
counterp = counterp + 3;
print "<tr>";
print "<td><a href='immagini.php/foto'" & counterp-2 & "><img alt='' src='foto.php/fotopicc/pfoto" & counterp-2 & ".jpg /><a></td>";
print "<td><img alt='' src='foto/fotopicc/pfoto" & counterp-1 & ".jpg' /></td>";
print "<td><img alt='' src='foto/fotopicc/pfoto" & counterp & ".jpg' /></td>";
print "</tr>";
}
print "</table>";}?>
</body>
</html>