Hello, on an occasion I came here for help on my shoutbox. Now I have an error submitting the data.
<?php
ini_set('display_errors', 0);
function InStr($String,$Find,$CaseSensitive = false) {
$i=0;
while (strlen($String)>=$i) {
unset($substring);
if ($CaseSensitive) {
$Find=strtolower($Find);
$String=strtolower($String);
}
$substring=substr($String,$i,strlen($Find));
if ($substring==$Find) return true;
$i++;
}
return false;
}
if (InStr($_POST["namesh"], 'critique')) {
echo('<meta http-equiv="refresh" content="0;URL=************************/spammer.html"
/>');
} else {
if (isset($_POST["namesh"], $_POST["text"])) {
$contents = strip_tags($_POST["namesh"]) . ' : '
. strip_tags($_POST["text"]) . "<br>";
if (file_put_contents("comments.txt", $contents, FILE_APPEND) === false) {
die("Robbit Shout is down, try again later.");
}
}
}
echo file_get_contents("comments.txt");
?>
When I type some message and submit it, the code displays the die message. Help?