webgui/www/extras/yui/examples/container/assets/get.php
JT Smith 20f8df1291 upgrading to YUI 2.6
data tables are going to need some work yet, but the other stuff seems to be working 100%
2008-10-22 23:53:29 +00:00

33 lines
No EOL
471 B
PHP

<?php
print "data = { ";
$index = 0;
foreach($_GET as $key => $value) {
print htmlspecialchars("$key:", ENT_QUOTES);
if (gettype($value) == "array") {
print "[";
for ($i = 0;$i < count($_GET[$key]);$i++) {
$v = $_GET[$key][$i];
print "\"$v\"";
if ($i < count($_GET[$key])-1) {
print ",";
}
}
print "]";
} else {
print "\"$value\"";
}
$index++;
if ( ($index) < count($_GET) ) {
print ", ";
}
}
print " };";
?>