print("<pre>".print_r($_POST,true)."</pre>");
Make a function:
function print_pre( $array )
{
if ( @is_array ( $array ) )
{
print "
\n";\n";
print_r ( $array );
print "
}
}
Then call it when you need it:
print_pre( $my_array );
11387 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
print("<pre>".print_r($_POST,true)."</pre>");
\n";\n";
print_r ( $array );
print "
You need to create an account or log in to post comments to this site.
please don't post the same message more than one time ^_^