|
Posted by Pedro Graca on 11/04/06 16:59
Daz wrote:
> echo "<pre>",print_r($_POST),"</pre>;
echo "<pre>"; print_r($_POST); echo "</pre>";
Will not print the result value of the print_r() call, which is 1. Or
you could do
echo "<pre>",print_r($_POST, true),"</pre>;
which will make print_r() return a formatted string with the contents
of $_POST instead of the 1 above.
print_r($something, true) *does*not* output anything; the output is
done by the echo.
Navigation:
[Reply to this message]
|