Je moet ingelogd zijn om te stemmen.
$result = mysql_query("SELECT * FROM fotos WHERE foto_id=" . $_GET['foto_id'] . ""); $row = mysql_fetch_array($result); $cookie = "gestemd" . $_GET['foto_id']; $cookieSET = $_COOKIE[$cookie]; $total = $row['cijfer'] / $row['aantal']; $total = round($total,1);
$result = mysql_query("SELECT * FROM fotos WHERE foto_id=" . $_GET['foto_id'] . "");$row = mysql_fetch_array($result);$cookie = "gestemd" . $_GET['foto_id'];$cookieSET = $_COOKIE[$cookie]; $total = $row['cijfer'] / $row['aantal']; $total = round($total,1);
$total = $row['cijfer'] / $row['aantal'];
if($row['aantal'] =< 0) { echo "geen stemmen"; } else { // hier wat er moet gebeuren als er wel stemmen zijn.. }
if($row['aantal'] =< 0){echo "geen stemmen";}else {// hier wat er moet gebeuren als er wel stemmen zijn..}
<?php if($row['aantal']<0){ $total = $row['cijfer'] / $row['aantal']; $total = round($total,1); } else { $total=0; } ?>
<?phpif($row['aantal']<0){ $total = $row['cijfer'] / $row['aantal']; $total = round($total,1);} else { $total=0;}?>