Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
html/css guestbook
regit wrote: Actually, I saw a guest book done all in javascript. I forget how it worked, but it was pretty crazy. At least, I think I remember a javascript guest book :/ I'm tiered… not a good idea to try to think i guess lol. You can include heaploads of javascript in a guestbook and just make the server do simple read/write-operations, but you still need a serverside script to handle some of it.
vince2478 wrote: oooo all I have is WAMP5
i believe that php comes with that make a file called guestbook.txt, CHMOD it to 777 then use this:
$post = htmlentities($_POST["post"]);
$name = htmlentities($_POST["Name"]);
if ($post=="" && $Name=="")
echo "";
else
$filewrite = @fopen("guestbook.txt","a");
@fwrite($filewrite, "<html><body>Name: $Name<br>");
@fwrite($filewrite, " Post: $post<br></body></html>");
@fclose($filewrite);
?>```