merging new yui

This commit is contained in:
JT Smith 2008-03-15 17:21:21 +00:00
parent 214a9673f9
commit 728eccc3cb
1638 changed files with 815363 additions and 0 deletions

View file

@ -0,0 +1,25 @@
<?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>";
?>