Onbekend |
|
Ik ben bezig aan een bank script, maar nu zie ik nooit hoeveel geld je contant heb staan en hoeveel op de bank
<?php
include('config.php');
if(!isset($_SESSION['gebruiker'])) {
header("Location: login.php");
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><?=$cfg['site']?></title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body bgcolor="#999999">
<?php
$geld = mysql_query("SELECT `contant`,`bank` FROM `leden` WHERE `gebruikersnaam` = '".$_SESSION['gebruiker']."'") or DIE(mysql_error()); //Haalt het contant en bank geld uit de database
$money = mysql_fetch_array($geld); //resultaat van de vorig lijn
?>
<table align="center" width="100%">
<tr><th colspan="2" align="center">Bank</th></tr>
<tr><td width="150">Geld op de bank:</td> <td width="200">€ <?php $money['bank'] ?></td>
</tr>
<tr><td>Geld contant:</td> <td>€ <?php $money->contant ?></td></tr>
<tr><td colspan="2"><form method="post">
Aantal €: <input name="geld" type="text" maxlength="9">
<input type="submit" name="bank" value="Op de bank">
<input type="submit" name="contant" value="Naar contant">
</form></td></tr>
</table>
<?php
//geld wordt overgeschreven
if (isset($_POST['bank'])) {
echo "<table width='100%'><tr><td align='center'>Je hebt geld naar je bank overgeschreven</td></tr></table>";
} else if (isset($_POST['contant'])) {
echo "<table width='100%'><tr><td align='center'>Je hebt geld contant gezet</td></tr></table>";
}
?>
</body>
</html>
<?php include('config.php'); if(!isset($_SESSION['gebruiker'])) { header("Location: login.php"); } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title><?=$cfg['site']?></title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body bgcolor="#999999"> <?php $geld = mysql_query("SELECT `contant`,`bank` FROM `leden` WHERE `gebruikersnaam` = '".$_SESSION['gebruiker']."'") or DIE(mysql_error()); //Haalt het contant en bank geld uit de database ?> <table align="center" width="100%"> <tr><th colspan="2" align="center">Bank</th></tr> <tr><td width="150">Geld op de bank:</td> <td width="200">€ <?php $money['bank'] ?></td> </tr> <tr><td>Geld contant:</td> <td>€ <?php $money->contant ?></td></tr> <tr><td colspan="2"><form method="post"> Aantal €: <input name="geld" type="text" maxlength="9"> <input type="submit" name="bank" value="Op de bank"> <input type="submit" name="contant" value="Naar contant"> </form></td></tr> </table> <?php //geld wordt overgeschreven if (isset($_POST['bank'])) { echo "<table width='100%'><tr><td align='center'>Je hebt geld naar je bank overgeschreven</td></tr></table>"; } else if (isset($_POST['contant'])) { echo "<table width='100%'><tr><td align='center'>Je hebt geld contant gezet</td></tr></table>"; } ?> </body> </html>
|