Re: [PHP] displaying database output in a table

2010-05-27 Thread Philip Thompson
On May 25, 2010, at 8:27 PM, David Mehler wrote: Hello, I'm trying to display mysql database output in a formatted table. My problem is i'm getting a blank screen with no errors. I've got debugging on, and have run the cli php on this file which produces no errors either, but neither does it

Re: [PHP] displaying database output in a table

2010-05-27 Thread Ashley Sheridan
On Thu, 2010-05-27 at 13:16 -0500, Philip Thompson wrote: On May 25, 2010, at 8:27 PM, David Mehler wrote: Hello, I'm trying to display mysql database output in a formatted table. My problem is i'm getting a blank screen with no errors. I've got debugging on, and have run the cli php

RE: [PHP] displaying database output in a table

2010-05-27 Thread Bob McConnell
From: Philip Thompson On May 25, 2010, at 8:27 PM, David Mehler wrote: Hello, I'm trying to display mysql database output in a formatted table. My problem is i'm getting a blank screen with no errors. I've got debugging on, and have run the cli php on this file which produces no errors

Re: [PHP] displaying database output in a table

2010-05-27 Thread David Mehler
Hello Everyone, Thanks for all your suggestions. Unfortunately, I've replaced require_once with include_once and require with include in all the documents, I'm still not having any luck. Thanks. Dave. On 5/27/10, Bob McConnell r...@cbord.com wrote: From: Philip Thompson On May 25, 2010, at

Re: [PHP] displaying database output in a table

2010-05-27 Thread Adam Richardson
On Thu, May 27, 2010 at 5:47 PM, David Mehler dave.meh...@gmail.com wrote: Hello Everyone, Thanks for all your suggestions. Unfortunately, I've replaced require_once with include_once and require with include in all the documents, I'm still not having any luck. Thanks. Dave. On 5/27/10,

Re: [PHP] displaying database output in a table

2010-05-27 Thread Ashley Sheridan
On Thu, 2010-05-27 at 17:59 -0400, Adam Richardson wrote: On Thu, May 27, 2010 at 5:47 PM, David Mehler dave.meh...@gmail.com wrote: Hello Everyone, Thanks for all your suggestions. Unfortunately, I've replaced require_once with include_once and require with include in all the

Re: [PHP] displaying database output in a table

2010-05-26 Thread tedd
At 9:27 PM -0400 5/25/10, David Mehler wrote: I'm trying to display mysql database output in a formatted table. My problem is i'm getting a blank screen with no errors. -snip- ?php $query = SELECT * FROM events; if (!($result = @ mysql_query ($query, $db))) displayEvents($result);