Attempting to add a tag board in php. Keep getting this error:
Code:
Warning: Empty Delimiter in /home/virtual/*BEEP*/fst/var/www/html/tagit/post.php on line 70
Im running through a text file for now and here is a chunk of the php from line 60 through line 80:
Code:
if (strlen($word_array[$i]) > $maxword)
{
echo "$beginning$error_wordlen$ending";
exit;
}
}
}
/* Filters out keywords, can be used to limit profanity */
if ($filter == 1)
{
for ($i = 0; $i <= sizeof($keywords); $i++)
{
if (stristr($nick, $keywords[$i]) || stristr($message, $keywords[$i]))
{
$error = str_replace("[KEYWORD]", $keywords[$i], $error_keyword);
echo "$beginning$error$ending";
exit;
}
Running phpmyadmin 2.3.2
Any help would be great!
Wonton