<html>
<head>
<title>A List of All Those Vaiables Variables you
get</title>
</head>
<body>
<table border=1>
<tr><td align=center>Array Name</td><td
align=center>Array Contents</td></tr>
<?php
foreach ($GLOBALS as $k => $v)
{
if (is_array($v))
{
echo
"<tr><td>$".$k."</td><td
><table>n";
if (count($v)>0)
{
echo "<tr><td><b>Index
Syntax</b></td><td> </td>&l
t;td><b>Current
Value</b></td></tr>";
}
foreach ($v as $key => $value)
{
echo
"<tr><td>['".$key."']</td>&
lt;td>=</td><td>".$value."</td&g
t;</tr>n";
}
echo "</table></td></tr>n";
}
ELSE
{
echo
"<tr><td>$".$k."</td><td
>".$v."</td></tr>n";
}
}
?>
</table>
</body>
</html>
----
Server IP: 209.41.74.194
Probable Submitter: 24.29.240.204
----
Manual Page -- http
://www.php.net/manual/en/tutorial.useful.php
Edit -- https://master
.php.net/note/edit/77475
Del: integrated -- h
ttps://master.php.net/note/delete/77475/integrated
Del: useless -- http
s://master.php.net/note/delete/77475/useless
Del: bad code -- htt
ps://master.php.net/note/delete/77475/bad+code
Del: spam -- https:/
/master.php.net/note/delete/77475/spam
Del: non-english --
https://master.php.net/note/delete/77475/non-english
Del: in docs -- http
s://master.php.net/note/delete/77475/in+docs
Del: other reasons-- https://mast
er.php.net/note/delete/77475
Reject -- https://mast
er.php.net/note/reject/77475
Search -- https://
master.php.net/manage/user-notes.php
--
PHP Notes Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|