Return to Snippet

Revision: 10274
at December 15, 2008 13:21 by conspirator


Initial Code
		<?php
			foreach($_POST as $key=>$value){
				if ($key!="submit"){
					$value=htmlentities(stripslashes(strip_tags($value )));
					echo "t<input type="hidden" name="$key" value="$value">n";
				}
			}
		?>

Initial URL


Initial Description


Initial Title
multi-page form php html

Initial Tags
form, php, textmate, page

Initial Language
Other