FallingDooms commented on a Page, Simple GuestBook  -  Apr 15, 2011
<?php $file = "guestbook.txt"; $name = $_POST['name']; $email = $_POST['email']; $site = $_POST['site']; $msg = $_POST['msg']; $site = stripslashes($site); $msg = stripslashes($msg); $email = stripslashes($email); $name = stripslashes($name); $msg = str_replace ("<","<",$msg); } else { $fp = fopen($file,"a"); fwrite($fp, '

Name: '.$name.'
Email: '.$email.'
Home Page: '.$site.'
Message: '.$msg.'
'); fclose($fp); echo '

Thank you '.$name.' for singing my guestbook

'; } ?>
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.