i need help placing / modding code
ok this is the file that proccess the shout in this file i want http://thybag.co.uk/?p=Tutorials&ind=40 added so it proccesses the smileys and bad words for $message
PHP Code:<?php
$name = $_POST['name'];
$website = $_POST['website'];
$message = $_POST['message'];
if(empty($name) OR empty($message))
{
echo "
<script language='javascript'>
alert('You need to fill out both of the form fields...');
</script>
";
}
else
{
echo "
<script language='javascript'>
alert('Thanks for your message $name...');
</script>
";
$name = htmlspecialchars($name);
$message = htmlspecialchars($message);
$tag = ("<font size=\"1\" face=\"Verdana\">
<b>$name</b>: $message </font><br><br>");
$read = fopen("content.txt", "r");
$contents = fread($read, filesize('content.txt'));
fclose($read);
$write = fopen("content.txt", "w");
fwrite($write, "$tag $contents");
fclose($write);
}
print "<meta http-equiv=\"refresh\" content=\"0;/v3/shout.htm\">";
// Copyright 2006 - 2007 Colin-Roberts.net
?>






Reply With Quote






