upgrade to yui 2.5.1

This commit is contained in:
JT Smith 2008-03-25 16:13:25 +00:00
parent e00050ad1c
commit ff7d72becc
1632 changed files with 812103 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>";
?>