Topic Contributors
creator avatar  
mreschke
Matthew Reschke
Site Developer
Created: Apr 14th, 2011
Updated: Aug 10th, 2011
File
Download Selected (zip)
Download Selected (tar.gz)
Edit
Select All
Select None
View
Detail
Detail Preview
Icons
Preview
Show Hidden
Hide Hidden
Full Manager
Reset Defaults
Open In New Tab
Open In New Window
List Archive Contents
Download File
Open
Download Folder (as .zip)
PHP Snippets
Post # 246 permalink Topic #244 by mreschke on 2011-04-14 20:53:19 (viewed 331 times)


Info
Small miscellaneous PHP code snippets and scripts

Table of Contents

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

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