vote up 1 vote down star

If have a problem on my site that users can post empty messages if they use space.

Code:

if (isset($_POST['submit'])) {

  // check for empty fields
  if (empty($_POST['headline']) || empty($_POST['text']) ||
      empty($_POST['forum_id'])) {
      header("Refresh: 2; url=/add-thread"); 
      die('You must fill out every field.');
  }

// No errors? Save.
else {
$headline = mysql_real_escape_string($_POST['headline']);
$text = mysql_real_escape_string($_POST['text']);

mysql_query("INSERT INTO threads (headline, text, date, forum_id, user_id)
             VALUES ('$headline', '$text', NOW(), '$_POST[forum_id]', '$user[id]')");

header("Location: /thread/".mysql_insert_id()."");
}

}

How can I fix this?

flag
You should also escape the $_POST['forum_id']. Users can still manipulate it. – Pim Jager Feb 1 at 0:22
You don’t need that empty string after mysql_insert_id(). It’s funny how often that is made. Oh, and use absolute URIs in the Location header field. – Gumbo Mar 16 at 16:49

7 Answers

vote up 9 vote down

trim() the text inputs. You can do that easily like this:

// get input vars and trim space
$callback = array('filter' => FILTER_CALLBACK, 'options' => 'trim');
$fields = filter_input_array(INPUT_POST, array(
    'headline' => $callback,
    'text'     => $callback,
    'forum_id' => $callback,
));

// check for empty fields by counting how many are set
if ( count($fields) != count(array_filter($fields)) ) {
    // something was unset
}
link|flag
gives me Fatal error: Can't use function return value in write context in C:\WAMP\www\add-thread.php on line 13 – Remy Jan 31 at 23:47
You can't use a function call inside empty(). Do it separately, then check the input length is > 0. – Ant P Feb 1 at 0:07
A quick way to apply trim to all post elements: $_POST = array_map( 'trim', $_POST ). – Nick Presta Feb 1 at 0:47
vote up 0 vote down

Try

if (!empty($_POST['headline']) && !empty($_POST['text']) &&
!empty($_POST['forum_id']))

For the logic.

You'd have to switch it around though.

UPDATE to clarify:

if (isset($_POST['submit']) && !empty($_POST['headline']) && 
!empty($_POST['text']) && !empty($_POST['forum_id'])) {

    $headline = mysql_real_escape_string($_POST['headline']);
    $text = mysql_real_escape_string($_POST['text']);

    mysql_query("INSERT INTO threads (headline, text, date, forum_id, user_id)
         VALUES ('$headline', '$text', NOW(), '$_POST[forum_id]', '$user[id]')");

    header("Location: /thread/".mysql_insert_id()."");
}
else
{
  header("Refresh: 2; url=/add-thread"); 
  die('You must fill out every field.');    
}

}

link|flag
now you can post without even writing anything – Remy Jan 31 at 23:49
You have to switch the logic around. – Ólafur Waage Jan 31 at 23:51
I updated it to clarify – Ólafur Waage Jan 31 at 23:54
empty() doesn't return true for strings consisting of whitespace, which is what the questioner is attempting to deal with. – Rob Feb 1 at 0:25
I can post "<br />" or " " or "­" or "<p>&nbsp</p>" or any combinations of these and still pass a trim and empty checks. So its pretty futile. – Ólafur Waage Feb 1 at 14:01
vote up -1 vote down

Right after checking for a submission:

foreach ( $_POST as $key => &$value ) $value = trim($value);

edit in response to asker's comment:

Odd that it didn't work as above. Here was my exercise to confirm it would.

tbramble@wayfarer:~$ php -a
Interactive shell

php > $arr = array('one',' two', ' three ');
php > print_r($arr);
Array
(
    [0] => one
    [1] =>  two
    [2] =>  three 
)
php > foreach ( $arr as $key => &$value ) $value = trim($value);
php > print_r($arr);
Array
(
    [0] => one
    [1] => two
    [2] => three
)

Must have something to do with working on a superglobal instead of a normal array.

link|flag
that didnt work but this did: foreach($_POST as $key => $value) $_POST[$key] = trim($value); – Remy Feb 1 at 0:02
also - entries in $_GET and $_POST can be arrays so u have to go thru recurssively – arin sarkissian Feb 1 at 2:13
Good call, Arin. Definitely not a drop-in solution for any occasion. – Trevor Bramble Feb 1 at 3:16
vote up 1 vote down

Just a quick note: You're injecting the value of $_POST['forum_id'] into the SQL; that's not a good idea, since a user could manipulate that value as desired, even if it is coming from a hidden field. It would be wise to escape the value, or at least pass it through intval() and ensure it's an integer (assuming integral post identifiers).

link|flag
thanks. didnt know that. – Remy Feb 1 at 3:40
vote up -1 vote down

I trim every $_GET & $_POST variable as soon as the app starts. try something like this:

function trimArray(&$array) {
    if (empty($array)) {
        return;
    }

    foreach ($array as $k => $v) {
        if (! is_array($v)) {
            $array[$k] = trim($v);
        } else {
            trimArray($v);
        }
    }
}

if (! empty($_GET)) {
    trimArray($_GET);
}
if (! empty($_POST)) {
    trimArray($_POST);
}
link|flag
vote up 1 vote down

I agree that trimming is the way to go. Here's a much easier way to go about it:

$_POST = array_map('trim', $_POST);
link|flag
vote up 3 vote down

The empty function checks for variables that meet a set criteria, from the manual

Returns FALSE if var has a non-empty and non-zero value.

The following things are considered to be empty:

  • "" (an empty string)

  • 0 (0 as an integer)

  • "0" (0 as a string)

  • NULL

  • FALSE

  • array() (an empty array)

  • var $var; (a variable declared, but without a value in a class)

Your $_POST fields actually contain something like this

"   ";

This isn't and empty string, but a string that's filled with whitespace characters.

Before using empty(), trim() the white-space from your POSTed values

$trimmed_post = array();
foreach($_POST as $key=>$value){
    $trimmed_post[$key] = $value;
}
if(!empty($trimmed_post['headline'])){
    //...
}

You don't need to put the new values into a new array, but I'm not a big fan of changing what's in the auto-generated superglobals.

One final note, you can't do something like this

if(!empty(trim($_POST['headline']))){
   //...
}

because the empty function expects to be passed an actual variable. You could do something like this instead

if('' != trim($_POST['headline'])){
//...
}

This is probably the best approach to take. You reduce the number of functions that you need to call, users can post entries with a value of 0, and the code is more explicit about what it does. Another form you'll see is

if(trim($_POST['headline'])){

}

This works because PHP evaluates an empty string ('') as false, and a non empty string as true. I tend to avoid this form because I've found a lot of PHP bugs crop up around misunderstandings on how the equality operators get boolean values out of certain types. Being explicit helps reduce occurrences of these types of bugs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.