Info
Small miscellaneous PHP code snippets and scripts

Post Content


Loop Forms[-][--][++]

Loop Forms
while (list($key, $value) = each($_POST)) {
    echo "$key - $value
"; }