Answers for "access post variables php"

PHP
0

php if $_POST

if( isset($_POST['fromPerson']) )
{
     $fromPerson = '+from%3A'.$_POST['fromPerson'];
     echo $fromPerson;
}

//Note: This resolves as true even if all $_POST values are empty strings
if (!empty($_POST))
{
    // handle post data
    $fromPerson = '+from%3A'.$_POST['fromPerson'];
    echo $fromPerson;
}
Posted by: Guest on January-18-2021

Code answers related to "access post variables php"

Browse Popular Code Answers by Language