Je moet ingelogd zijn om te stemmen.
<?php include('config.php'); if(!isset($_SESSION['gebruiker'])) { header("Location: index.html"); } mysql_query("UPDATE `leden` SET `online`=NOW() WHERE `gebruikersnaam`='".$_SESSION['gebruiker']."'"); ?> <!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 http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>:: counter terrors ::</title> </head> <body> <?php $lid = mysql_query("SELECT * FROM leden ORDER BY gebruikersnaam ASC"); $geld = mysql_fetch_object($lid); $totaal = $geld->contant + $geld->bank; ?> <table width="570" height="200"> <tr> <td><b>Naam</b></td> <td><b>Station</b></td> <td><b>Totaal geld</b></td> </tr> <?php while($leden=mysql_fetch_object($lid)){ ?> <tr> <td><?php echo $leden->gebruikersnaam ?></td> <td><?php if($leden->station == ""){ echo "<b>Heeft geen station</b>"; }else{ echo $leden->station; }?></td> <td><?php echo "$totaal €" ?></td> </tr> <?php } mysql_close(); ?> </table> </body> </html>
<?phpinclude('config.php');if(!isset($_SESSION['gebruiker'])) { header("Location: index.html");} mysql_query("UPDATE `leden` SET `online`=NOW() WHERE `gebruikersnaam`='".$_SESSION['gebruiker']."'");?><!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 http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>:: counter terrors ::</title></head><body><?php $lid = mysql_query("SELECT * FROM leden ORDER BY gebruikersnaam ASC"); $geld = mysql_fetch_object($lid); $totaal = $geld->contant + $geld->bank;?><table width="570" height="200"> <tr> <td><b>Naam</b></td> <td><b>Station</b></td> <td><b>Totaal geld</b></td> </tr><?php while($leden=mysql_fetch_object($lid)){?> <tr> <td><?php echo $leden->gebruikersnaam ?></td> <td><?php if($leden->station == ""){ echo "<b>Heeft geen station</b>"; }else{ echo $leden->station; }?></td> <td><?php echo "$totaal €" ?></td> </tr><?php } mysql_close();?></table></body></html>
<?php while($leden=mysql_fetch_object($lid)){ $totaal = $leden->contact+$leden->bank; ?> <tr> <td><?php echo $leden->gebruikersnaam ?></td> <td><?php if($leden->station == ""){ echo "<b>Heeft geen station</b>"; }else{ echo $leden->station; }?></td> <td><?php echo "$totaal €" ?></td> </tr> <?php } mysql_close(); ?>
<?php while($leden=mysql_fetch_object($lid)){$totaal = $leden->contact+$leden->bank;?> <tr> <td><?php echo $leden->gebruikersnaam ?></td> <td><?php if($leden->station == ""){ echo "<b>Heeft geen station</b>"; }else{ echo $leden->station; }?></td> <td><?php echo "$totaal €" ?></td> </tr><?php } mysql_close();?>
$geld = mysql_fetch_object($lid); $totaal = $geld->contant + $geld->bank;