Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <html>
  2. <body bgcolor="grey">
  3. <div align=center>
  4. <h2>Bank Krajowy nr 3</h2>
  5. <div>
  6. <?php
  7. session_start();
  8. if(!isSet($_SESSION['zalogowany'])){
  9. $_SESSION['komunikat'] = "Nie jesteล› zalogowany!";
  10. include('form.php');
  11. exit();
  12. }
  13. $fdd=@fopen("stankonta.txt","r");
  14. while(!feof($fdd)){
  15. $linee=trim(fgets($fdd));
  16. $arrr=explode(";",$linee);
  17. if($arrr[0]== $_SESSION['user']){
  18. echo 'Aktualny stan konta to: '.$arrr[1].' PLN';
  19. }
  20. }
  21. fclose($fdd);
  22. if(!isSet($_SESSION['page1hits'])){
  23. $_SESSION['page1hits'] = 1;
  24. }
  25. else{
  26. $_SESSION['page1hits']++;
  27. }
  28. ?>
  29. <br>
  30. Nacisnij aby powrocic do strony glownej:<br>
  31. <a href="main.php">Powrot</a>
  32. <center><img src="bank.jpg" height="400" width="500"></center><br>
  33. <?php
  34. echo "Liczba wizyt na naszej stronie w tej sesji: ";
  35. echo $_SESSION['page1hits'];
  36. ?>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement