RE: [PHP-DB] Display results on html page

2003-03-21 Thread Michelle Whelan
John, I don't think I'm understanding what you are saying. Anyhow, I actually got the html to display. John Mailing list, I am having a problem with my query working. It was working, then I must have edited something in it. I don't remember exactly what because it was very late at night.

[PHP-DB] Display results on html page

2003-03-20 Thread Michelle Whelan
I am looking to display results of a query inside of an html table. When I tested to see if this was correct it returned with a blank page on my website. Here is my code: TIA Michelle /* If there was a problem with the query... */ if (!$result || @mysql_num_rows($result) 1) { print(No

Re: [PHP-DB] Display results on html page

2003-03-20 Thread David Smith
You appear to have a ton of extra braces. I've modified your code below. That should do it, though keep in mind that your HTML is faulty too, though most browsers will probably tolerate it. :) --Dave Michelle Whelan wrote: I am looking to display results of a query inside of an html table.