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
A bit better looking
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;
?>