preparing for 2.6 yui upgrade
This commit is contained in:
parent
eea207b3ec
commit
a041e93da8
1632 changed files with 0 additions and 812103 deletions
|
|
@ -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>";
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue