On Feb 12, 2008 1:58 PM, Nathan Rixham <[EMAIL PROTECTED]> wrote:
> I still don't understand why general net users don't just like to see
> print_r output; it's got all the info they could want, ordered and
> structured *shrugs*
>
> vote: text/plain

I agree.  I usually add a little function like this to my PHP projects:

function debug( $var )
{
  echo '<pre>';
  print_r( $var );
  echo '</pre>';
}


-- 
Greg Donald
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to