Jump to content

Recommended Posts

hey everyone, I ve kind of a newby question. I first had this piece of code

 


<?php


if ( empty( $_POST['firstname'] )
{
    $message .= "error";
}



if ($message != "")
{
echo "<div style='color: #D00;'>" . $message . "</div><br />\n";
}
elseif ( empty( $message) )
{
echo "correct <br />";
}

?>

 

then I changed it to

 

<?php


function isNullOrEmpty( $valueToCheck )
{
if ( empty( $valueToCheck ) )
             {
	$message .= "You have to fill the contact's " . $valueToCheck . "! <br />";
}
else 
{
	$message = "";
}
return $message;
}



isNullOrEmpty( $_POST['firstname'] );



if ($message != "")
{
echo "<div style='color: #D00;'>" . $message . "</div><br />\n";
}
elseif ( empty( $message) )
{
echo "correct <br />";
}
?>

 

but now it always says my code is correct even when the field is empty. Does anyone knows what I am doing wrong with my function?  many thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/148040-solved-making-a-function/
Share on other sites

You have to assign the value returned by the function so you can use it.

<?php


function isNullOrEmpty( $valueToCheck )
{
if ( empty( $valueToCheck ) )
             {
	$message .= "You have to fill the contact's " . $valueToCheck . "! <br />";
}
else 
{
	$message = "";
}
return $message;
}



$message = isNullOrEmpty( $_POST['firstname'] );



if ($message != "")
{
echo "<div style='color: #D00;'>" . $message . "</div><br />\n";
}
elseif ( empty( $message) )
{
echo "correct <br />";
}
?>

 

Ken

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.