Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simple GuestBook
#2
Good job there man, that actually a simple script and I was amazed that it worked with only few lines.
Well done!

May I suggest you a change in your writting style.

Your script
PHP Code:
<?php
$message
=$_POST["message"];
$name=$_POST["fname"];
?>
<?php
$file
=fopen("mboard.txt","a");
fwrite($file,$name);
fwrite($file,": ");
fwrite($file,$message);
fwrite($file,"<br><br>");
fclose($file);
?>
<script type="text/javascript">
<!--
window.location = "http://nevets04.comoj.com/board.php"
//-->
</script> 

A bit better looking
PHP Code:
<?php
$message
=$_POST["message"];
$name=$_POST["fname"];

$file=fopen("mboard.txt","a");
fwrite($file,$name);
fwrite($file,": ");
fwrite($file,$message);
fwrite($file,"<br><br>");
fclose($file);

echo <<<HTML
<script type="text/javascript">
<!--
window.location = "http://nevets04.comoj.com/board.php"
//-->
</script>
HTML;

?>
Reply


Messages In This Thread
Simple GuestBook - by nevets04 - 12-21-2009, 07:16 PM
RE: Simple GuestBook - by Gaijin - 12-21-2009, 07:35 PM
RE: Simple GuestBook - by nevets04 - 12-21-2009, 11:32 PM
RE: Simple GuestBook - by Gaijin - 12-21-2009, 11:47 PM
RE: Simple GuestBook - by nevets04 - 12-22-2009, 12:20 AM
RE: Simple GuestBook - by Spl3en - 12-22-2009, 07:57 AM
RE: Simple GuestBook - by nevets04 - 12-22-2009, 03:08 PM
RE: Simple GuestBook - by Socrates - 12-22-2009, 07:49 PM

Forum Jump:


Users browsing this thread: 4 Guest(s)