×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to get all the POST method variables are available?


PHP - How to get all the POST method variables are available?

foreach ($_POST as $var => $value) 
{
    echo "$var = $value<br>\n";
}

Category: PHP

 
<< Go back