MySQL interesse |
|
Ik heb een pagina met deze code, bv index.php?game=116
<?php
include "config.php";
$id=$_GET['game'];
$query1=mysql_query("SELECT * FROM games WHERE id='$id'");
while($object=mysql_fetch_object($query1)){
$score = $object->score;
$scoreoud= $score;
$scorenew=$scoreoud+1;
$query="UPDATE games SET hits='$scorenew' WHERE id='$id'";
mysql_query($query) or die(mysql_error());
?>
<?php include "config.php"; $id=$_GET['game']; $query1=mysql_query("SELECT * FROM games WHERE id='$id'"); $score = $object->score; $scoreoud= $score; $scorenew=$scoreoud+1; $query="UPDATE games SET hits='$scorenew' WHERE id='$id'"; ?>
Nou is dus de bedoeling dat ie uit mijn tabel haalt dat hij bij id nummer 116 bij het veld score er 1 bij optelt. Maar dat doet ie niet... Wie ziet de fout hier?
|