Re: Template system in PHP

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Feb 12, 2008 1:58 PM, Nathan Rixham <nrixham@xxxxxxxxx> 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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux