vendredi 24 avril 2015

Fatal error: Can't use function return value in write context in [filter_input]

I'm learning PHP and have problem with I think filter_input function.

<?php


if (!isSet(filter_input(INPUT_COOKIE, 'nazwa')) && !isSet(filter_input(INPUT_GET, 'nazwa')))
{
    include ("header.html");
    include 'form.html';
    include 'footer.html';
}
else if (isset(filter_input(INPUT_GET, 'nazwa'))) {
    setcookie("nazwa", (filter_input(INPUT_GET, 'nazwa')), time() + 60*60*24*365);
    include 'header.html';
    echo "<p> Dziękujemy za podanie danych.</p>";
    include 'footer.html';
}
else {
    include 'header.html';
    echo "Witamy, zostałeś rozpoznany jako {filter_input(INPUT_COOKIE, 'nazwa')}.";
    include 'footer.html';
}

?>

I got:

Fatal error: Can't use function return value in write context in C:\Users\User\Documents\NetBeansProjects\PhpProject3\cookie\index.php on line 4

Could you plese help me?

Aucun commentaire:

Enregistrer un commentaire