Advertisement
wtmhahagd

PHP woes

Dec 9th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Word Permutations</title>
  5. <style type="text/css">
  6. .u {
  7. text-decoration: underline;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <?php
  13. $date = date('l jS \of F Y h:i:s A');
  14.  
  15. print "<p>It is currently:</p>";
  16. print "<p id='date'>" . $date . "</p>";
  17.  
  18. $filename = "file.txt";
  19. $file = fopen($filename, "a+");
  20. fwrite($file, $date); // add the current date on top
  21. fclose($file);
  22.  
  23. $file_array = file($filename); // get the log file as array
  24. $length = count($file_array);
  25.  
  26. print "<p>This site last visited on: " . $file_array[0] . "</p>";
  27. print "<p>This site visited " . $length . " times.</p>";
  28. ?>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement