Jump to content

Shoutbox Spams


Guest SwordKing

Recommended Posts

Guest SwordKing
Hi Community,

I just created a shoutbox. Day by day I get senseless spams in it. I think there are a few oppurtiunitys how to keep my shoutbox clear and safe.
A security code would maybe help and a blocking of 'www' or 'http://' !

How do I do that? If you have any suggestions, please le me know. thanks
Link to comment
Share on other sites

Guest SwordKing
okay. I understand that, but how to show an error? I used

[code]if($action=="add" AND $cont<>"www" AND $cont<>"http://" ) {
[/code]

But if someone posted "http://myurl.de" it's useless. What can I use instead of <> ?


Link to comment
Share on other sites

well AND doesn't really matter unless he's mixing operators cuz AND and && has a different order of precedence.  In this particular condition (and in most conditions) it really doesn't matter.

i think what you are really trying to do in this condition is for instance this:

[code]
if ($action == "add") {
  if((!substr($cont,"http://") && (!substr($cont,"www")) {
    // add stuff here
  } else {
    // is spam
  }
}
[/code]
Link to comment
Share on other sites

Guest SwordKing
[code]Parse error: parse error, unexpected '{' [/code]

there stand :

[code]  if((!substr($cont,"http://") && (!substr($cont,"www")) { [/code]

Should I post the whole code?
Link to comment
Share on other sites

  • 3 weeks later...
Guest SwordKing
hi I am here once again.

There is a problem with your code. Or maybe I did wrong :

[code]if ($action == "add") {
  if(!substr($cont,"http://") && !substr($cont,"www")) {
    $add="INSERT INTO shoutbox (name, content) VALUES ('$name', '$content')"; $sqlaction=mysql_query($add);
  print "entry <strong>done</strong> ...  [ <a href=\"index.php?show=news\">go on</a> ]";
  } else {
  print "Please <strong>don't</strong>Spam !";
  }
}[/code]

He is always showing "Please don't Spam". I am not able to insert an entry.

What's wrong here?

Link to comment
Share on other sites

I THINK you might have your variables mixed up.

Is the box with the shoutbox message in called $content? If so then use the following:

[code]if ($action == "add")
{
if(!substr($content,"http://") | !substr($content,"www"))
{
$add="INSERT INTO shoutbox (name, content) VALUES ('$name', '$content')"; $sqlaction=mysql_query($add);
print "entry <strong>done</strong> ...  [ <a href=\"index.php?show=news\">go on</a> ]";
}
else
{
print "Please <strong>don't</strong> Spam !";
}
}[/code]
Link to comment
Share on other sites

Try:
[code]
<?php

if ($action == "add") {
  if(strpos($content, "http://") === false && strpos($content, "www") === false){
  $add = "INSERT INTO shoutbox (name, content) VALUES ('$name', '$content')";
  $sqlaction = mysql_query($add);
  print "entry <strong>done</strong> ...  [ <a href=\"index.php?show=news\">go on</a> ]";
  } else {
  print "Please <strong>don't</strong>Spam !";
  }
}

?>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.