Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $file = 'chatlog.html';
- //filename
- $maxlen = 256;
- //max string
- if (strlen($_GET['message']) != $maxlen + 1) {
- file_put_contents($file, "<b>" . $_GET['message'] . "</b><hr>", FILE_APPEND);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement