Advertisement
justync7

log.php

Jun 26th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2. $file = 'chatlog.html';
  3. //filename
  4. $maxlen = 256;
  5. //max string
  6.  
  7. if (strlen($_GET['message']) != $maxlen + 1) {
  8.     file_put_contents($file, "<b>" . $_GET['message'] . "</b><hr>", FILE_APPEND);
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement