git.asbjorn.biz
/
jquery.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
test runner: a test for load() with a hash of data, and another for load() with a...
[jquery.git]
/
test
/
data
/
params_html.php
1
<div id="post">
\r
2
<?php
\r
3
foreach( $_POST as $key=>$value )
\r
4
echo "<b id='$key'>$value</b>";
\r
5
?>
\r
6
</div>
\r
7
<div id="get">
\r
8
<?php
\r
9
foreach( $_GET as $key=>$value )
\r
10
echo "<b id='$key'>$value</b>";
\r
11
?>
\r
12
</div>