|
Posted by Rik on 06/19/07 17:59
On Tue, 19 Jun 2007 19:18:02 +0200, techjohnny@gmail.com
<techjohnny@gmail.com> wrote:
> Ok,
>
> I posted earlier about this, a blank php page. I've enabled logging
> ALL in the php.ini, but nothing. If I change the name of the db in
> the include file, I get an error message, so I guess this means it's
> connecting to the mysql db. I've included the first couple lines of
> code for this page:
First rule of hunting errors: do not surpress any errors by @ if something
isn't working.
Second: I do not see any output, so as far as I'm concerned if you've got
no errors you would still see nothing.
- $qry['cat'] doesn't seem to be set anywhere, how come?
- check your queries for errors: echo mysql_error(), and the query itself.
--
Rik Wasmus
[Back to original message]
|