A little dab'll do yaCode Snippets Home » Code Snippets » PHP » Display Array Contents Submit one!Display Array Contentsecho '<pre>'; print_r ($_POST); echo '</pre>';
Seriously? This is terrible lol.
He wanted that $1 so much. :’)
lmao!!!!!!!!!!!!!!!!!!!!!!!!! this is funny
lollllll
so, an attempt to correct this users coding..
input:
output:
woops, the echo tags have a ‘pre’ tag in them.
haha this is too basic for a snippet
Or this:
echo '<pre>',print_r($array,1),'<pre>';
For beginners:
The reason we use a comma instead of a period/dot between the ‘pre’ and the print_r() is because print_r() does an echo from itself.
If you would use a dot instead then it PHP will echo print_r() and AFTER that a pre and a /pre.
–
Gringer
PS:
As we can read here:
http://nl3.php.net/manual/function.print-r.php
print_r() takes a second argument to return instead of echo:
Note: We use dots instead of comma’s, and give print_r() an extra ‘true’ (= return).
Not as short, but just to explain to beginners how the spoon fits in the fork xD
I’m sorry to say that not everybody is experienced who come here.It is a wonderful resource for the all levels of coder. Keep it up Chris.. Thanks
Gringer. I agree with you. Thanks.