git.asbjorn.biz
/
jquery.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixes #8135. Makes sure any exception thrown by Firefox when trying to access an...
[jquery.git]
/
test
/
data
/
params_html.php
1
<div id="post">
2
<?php
3
foreach( $_POST as $key=>$value )
4
echo "<b id='$key'>$value</b>";
5
?>
6
</div>
7
<div id="get">
8
<?php
9
foreach( $_GET as $key=>$value )
10
echo "<b id='$key'>$value</b>";
11
?>
12
</div>