Jump to content

Recommended Posts

Every time i hit enter within my comment textfield and click submit it causes it to echo that the content is invalid.

 

Example:

 

TectField comment would be wrritten like so;

 

Some comment that i wish to hit enter

without an error.

 

<?php
$text = strip_tags(addslashes($_POST['textfield']));

if (!ctype_alnum(str_replace(" ", "", $text))){
echo "Bad content found";
}elseif (ctype_alnum(str_replace(" ", "", $text))){
echo "Good content";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/62191-forum-comments/
Share on other sites

[code]<?php
$text = strip_tags(addslashes($_POST['textfield']));

if (!ctype_alnum(str_replace(" ", "", $text))){
echo "Bad content found";
}elseif (ctype_alnum(str_replace(" ", "", $text))){
echo "Good content";
}

 

change Good content to bad content found  ;)  :D 

 

And why don't you just use If and else?

 

?>[/code]

Link to comment
https://forums.phpfreaks.com/topic/62191-forum-comments/#findComment-309598
Share on other sites

possibly a useless suggestion

 

try trimming, and maybe replacing windows newlines with unix newlines, or the other way round...

 

<?php
//...

$text = trim(strip_tags(addslashes($_POST['textfield'])));
$text = str_replace("\r\n", "\n", $text); // replace windows newline with unix...

Link to comment
https://forums.phpfreaks.com/topic/62191-forum-comments/#findComment-310857
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.