RE: [PHP] php SHOW

2007-08-03 Thread Sanjeev N
Hi, If I understood your problem correctly then, you can use ob_start and ob_end functions Warm Regards, Sanjeev http://www.sanchanworld.com/ http://webdirectory.sanchanworld.com -Original Message- From: Hulf [mailto:[EMAIL PROTECTED] Sent: Friday, August 03, 2007 4:26 PM To: php-general

Re: [PHP] php SHOW

2007-08-03 Thread Paul Scott
On Fri, 2007-08-03 at 11:56 +0100, Hulf wrote: > Is there a way to output my data and tables using a php version of SHOW? > Doesn't have to be pretty HTML just output to screen Well, not knowing what show does, my best guess would be that you are looking for __toString() --Paul All Email origi

Re: [PHP] php SHOW

2007-08-03 Thread Richard Heyes
Is there a way to output my data and tables using a php version of SHOW? Doesn't have to be pretty HTML just output to screen If you're referring to PHP data types (arrays, strings, ints etc) you could use either var_dump() or print_r(). -- Richard Heyes +44 (0)844 801 1072 http://www.websupp

RE: [PHP] php SHOW

2007-08-03 Thread Edward Kay
> -Original Message- > From: Hulf [mailto:[EMAIL PROTECTED] > Sent: 03 August 2007 11:56 > To: php-general@lists.php.net > Subject: [PHP] php SHOW > > > Is there a way to output my data and tables using a php version of SHOW? > Doesn't have to be pretty HTML just output to screen > > Ta