0

我正在开发允许用户向系统发送反馈的网站。我使用 textarea 和按钮创建了反馈表进行提交。最重要的是当用户点击提交时,如果用户输入了一些我不想让他们输入的单词,该反馈不会发送到系统;它会提醒用户在点击提交之前删除该单词。

从现在开始,我只是创建了一个简单的代码,如果用户输入我不希望他们以反馈形式输入的单词,它将回显一些警告。

这是我的代码

<form action="main.php" method="post">
    <textarea cols='10' rows='5' name='text'></textarea>
    <br/>
    <input type='submit' name='add' Value='Add to list' />
</form>

<?php
if (isset($_POST['add'])) {
    $banned = array('dog', 'cat', 'cow'); // Add more
    $entry = $_POST['add'];
    foreach($banned as $word): if (strpos($entry, $word) !== false) die('Contains banned word');
    endforeach;
}
?> 

这不是工作。谁能帮我解决这个问题?

预先感谢。

4

6 回答 6

2

试试喜欢

$entry = $_POST['text'];    // Not $_POST['add'];
foreach ($banned as $word):
    if (strpos($entry, $word) !== false) {
        echo 'Contains banned word';
        exit;
    }
endforeach;

$entry将成为文本框值,即$_POST['text'] not $_POST['add']

于 2013-08-29T05:17:13.977 回答
0
<?php
if(isset($_POST['add'])){
    $banned = array('dog', 'cat', 'cow'); // Add more
    $entry = $_POST['text'];

    if(in_array($entry,$banned))
    {
        die('Contains banned word');
    }
}
?>
于 2013-08-29T05:21:54.450 回答
0

你想做文字审查。为此,请使用 str_ireplace() 函数。我在下面给出了一个示例代码。这个函数的作用是用另一个词替换这个词。

<?php
$find=array('galaxy', 'planet', 'moon');
$replace=array('spiral', 'earth', 'satelite');
if (isset($_POST['userinput'])&&!empty($_POST['userinput']))
{
$user=$_POST['userinput'];
$user_new=str_ireplace($find, $replace, $user);
echo $user_new;

}
?>
<hr>
<form action="index.php" method="POST">
<textarea cols="50" rows="10" name="userinput"><?php echo $user; ?></textarea><br />
<input type="submit" value="submit" />
</form>
于 2013-08-29T05:23:37.020 回答
0

如果用户有任何禁用词,您需要做的就是停止表单提交

<form action="main.php" method="post">
<textarea cols='10' rows='5' name='text' id='text'></textarea>
<br/>
<input type='submit' name='add' Value='Add to list' onclick='validate()' />
</form>

在你的 javascript

<script>
function validate() {
   var text = document.getElementById('text').value;
   var banned = new Array('dog', 'cat', 'cow');
   for (var x in banned) {
      if ( strpos(text,banned[x],0) ) {
            continue; // will stop the loop
            return false; // will stop everything and will not let the form post to php

      }
   }
   return true; // will return true and will post the form to php
}

// Custom Function
function strpos (haystack, needle, offset) { // http://phpjs.org/functions/strpos/
  var i = (haystack + '').indexOf(needle, (offset || 0));
  return i === -1 ? false : i;
}
</script>

我希望这个能帮上忙

PS:函数strpos取自phpjs.org

于 2013-08-29T05:36:22.977 回答
0

使用 in_array 函数http://php.net/manual/ru/function.in-array.php

$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
    echo "Got Irix";
}
于 2013-08-29T05:18:33.083 回答
0

与其每次输入文本时都将代码提交给服务器,我建议您在客户端使用 Javascript 并仅在通过验证后才提交。

HTML

<form action="main.php" method="post">
<input type="text" onchange="validate_function(this)">
 //works with text area too.
<input type='submit' name='add' Value='Add to list' />
</form>

Javascript

validate_function(a)
{
r=0;
banned = array('dog', 'cat', 'cow');
var lines = a.val().split('\n');
for(var x=0;x<banned.length;x++) 
{    
for(var i = 0;i < lines.length;i++)
{
if (lines[i].indexOf(banned[x]) > -1)
 {
      r=1;
      break;
}
 else 
{

}

}
if(r==1)
break;
}
if( r==0)
return true;
else 
return false;
}
于 2013-08-29T05:19:12.327 回答