Re: [PHP] Re: I am probably dumb but why isn't this inserting stuffinto my DB?

2002-07-05 Thread Miguel Cruz
On Sat, 6 Jul 2002, JJ Harrison wrote: $query = INSERT INTO tececo_stats values ('', $id, $visited, $time, $remote_dns, $remote_ip, $referer, $browser, $system); mysql_query($query); You should always do the following if you are having trouble: 1) print out $query and try it yourself at the

Re[2]: [PHP] Re: I am probably dumb but why isn't this inserting stuffinto my DB?

2002-07-05 Thread Julie Meloni
JH I have magic_quotes on though so useless lecture thanks for the advice Having magic_quotes on doesn't preclude your query from being invalid. You should still: JH Miguel Cruz [EMAIL PROTECTED] wrote in message: 1) print out $query and try it yourself at the mysql command line. 2) print