JeuWeb - Crée ton jeu par navigateur
update table pour variable session - Version imprimable

+- JeuWeb - Crée ton jeu par navigateur (https://jeuweb.org)
+-- Forum : Discussions, Aide, Ressources... (https://jeuweb.org/forumdisplay.php?fid=38)
+--- Forum : Programmation, infrastructure (https://jeuweb.org/forumdisplay.php?fid=51)
+--- Sujet : update table pour variable session (/showthread.php?tid=2272)

Pages : 1 2


RE: update table pour variable session - Sephi-Chan - 13-01-2008

Une solution propre pour un débogage facile :
Code PHP :
<?php 
$query
= sprintf(
"UPDATE map SET abandon = %d, qabandon = %d
WHERE posx = %d AND posy = %d;"
,
$_SESSION['stock'],
$quantité,
$rsa['posx'],
$rsa['posy']
);
echo
'<pre>'.$query.'</pre>';
if(
$sql = mysql_query($query)){
mysql_affected_rows();
}
else {
mysql_error();
}

Liens utiles :

Sephi-Chan