function create_user(){ $db = new DbHome("utente"); $psw = md5("password"); $db -> exec("INSERT INTO utenti VALUES ('Leo', '$psw', 'ND')"); $db -> exec("INSERT INTO utenti VALUES ('AleS', '$psw', 'ND')"); $db -> exec("INSERT INTO utenti VALUES ('AleP', '$psw', 'ND')"); $db -> exec("INSERT INTO utenti VALUES ('Sim', '$psw', 'ND')"); }
<? include("DbHome.php"); session_start(); $utente=$_SESSION["utente"]; $db = new DbHome($utente); if(strcmp($_POST["newpsw"], $_POST["newpsw1"])){ $_SESSION["stato"] = "La password di conferma non coincide."; } if($db -> changePsw($_POST["oldpsw"], $_POST["newpsw"], $_POST["newpsw1"])) $_SESSION["stato"] = '<font color="green">Password Modifica con Successo</font>'; else $_SESSION["stato"]= "Tentativo di modifica password fallito"; header("location: ./login.php"); ?>
setcookie("gestione-casa", $cookie_string); } else{ $_SESSION["login-failed"] = true; header("location: ./index.php"); } } else{ $cookie_string = $_COOKIE["gestione-casa"]; } $utente = strtok($cookie_string, "/"); $_SESSION["utente"] = $utente; $password = strtok("/"); $db = new DbHome($utente); include("header.php"); ?> <div class="container"> <center><img src="http://www.bartrattoriaichnusa.it/polopoly_fs/1.13207862.1375103135!/httpImage/img.jpg" /></center> <h2>Utente: <?php echo $utente; if (isset($_SESSION["stato"])) { echo ' - <font color="red">' . $_SESSION["stato"] . "</font>"; unset($_SESSION["stato"]); } ?> - <a href="logout.php">Logout</a></h2> <h2>Tabella Riepilogo</h2> <p>Il valore mostrato è la differenza tra credito e debito</p>
<? include("DbHome.php"); session_start(); $utente=$_SESSION["utente"]; $db = new DbHome($utente); if($_POST["utente_pagante"] == "Tutti") $db -> aggiungiSpesa( date("d-m-Y"), $_POST["importo"], $_POST["causale"]); else $db -> aggiungiSpesaSingola( date("d-m-Y"), $_POST["importo"], $_POST["causale"], $_POST["utente_pagante"]); header("location:./login.php"); $_SESSION["stato"] = "Spesa Registrata Correttamente"; ?>