Codice PHP:
<?php
session_start();
$server = $_SESSION['server'];
$myusername = $_SESSION['myusername'];
$citta = $_POST['citta'];
$x=rand(0,320);//genero x
$y=rand(0,320);//genero y
include ("config.inc.php");
mysql_select_db($db_name, $db)
or die ("Errore nella selezione del database. Verificare i parametri nel file config.inc.php");
$query("INSERT INTO ".$server."_città (nome,proprietario,x,y,legno,marmo,grano,ferro) VALUES ('$citta','$db_utente[id]','$x,'$y','200','100','100','100')";
if (mysql_query($query, $db))
echo "Complimenti, ".$citta." è stata fondata";
else
echo "Errore durante l'inserimento";
?>
Questo è il mio codice, ma mi dà un errore nella linea 14, ovvero questa:
Codice PHP:
$query("INSERT INTO ".$server."_città (nome,proprietario,x,y,legno,marmo,grano,ferro) VALUES ('$citta','$db_utente[id]','$x,'$y','200','100','100','100')";
L'errore è questo:
Parse error: syntax error, unexpected ';' in /membri/enkantar2/INCLUDE/nuovacitta.php