Guest User

konto.php

a guest
Nov 22nd, 2016
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. session_start();
  3. /*
  4. * To change this license header, choose License Headers in Project Properties.
  5. * To change this template file, choose Tools | Templates
  6. * and open the template in the editor.
  7. */
  8.  
  9. $kontoværdi2 = 6000;
  10. $input = $_POST['hævning'];
  11.  
  12. $adminusername = "admin";
  13. $adminpassword = "1234";
  14.  
  15. if($kontoværdi2 > 0 && $input < $kontoværdi2){
  16.  
  17. $kontoværdi2 = $kontoværdi2 - $input;
  18. header('Location: bruger.php');
  19. } else{
  20. header('Location: bruger.php?msg=ikke-nok-penge-på-kontoen');
  21. }
  22.  
  23.  
  24. ?>
Add Comment
Please, Sign In to add comment