Gerard-Meier

Reload issue?

Aug 27th, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.40 KB | None | 0 0
  1. <?php
  2. session_start();
  3. ?>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  5. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8.  
  9. </head>
  10. <body>
  11.  
  12.     <img src="" />
  13.  
  14. <?php
  15.     if(!isset($_SESSION['somecounter']))
  16.          $_SESSION['somecounter'] = 0;
  17.          
  18.     print "views: " . $_SESSION['somecounter']++;
  19. ?>
  20.  
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment