preparing for 2.6 yui upgrade

This commit is contained in:
JT Smith 2008-10-22 18:36:26 +00:00
parent eea207b3ec
commit a041e93da8
1632 changed files with 0 additions and 812103 deletions

View file

@ -1,25 +0,0 @@
<?php
print "<strong>Submitted Data</strong>";
print "<ul>";
foreach($_POST as $key => $value) {
print "<li>";
print htmlspecialchars("$key: ", ENT_QUOTES);
if (gettype($value) == "array") {
for ($i = 0;$i < count($_POST[$key]);$i++) {
$v = $_POST[$key][$i];
print "$v";
if ($i < count($_POST[$key])-1) {
print ", ";
}
}
} else {
print "$value";
}
print "</li>";
}
print "</ul>";
?>