PDA

View Full Version : Slight Proxy Help



Zombie
July 17th, 2008, 16:33
mysql_query("update browses set amount=amount+1 where amount") or die('ERROR ADDING Browses!');
mysql_query("Insert into browse ('id','ip','date','site') VALUES('','$ip','$date','$u')");


For some reason that wont insert the items into the database

I have tested the database connection and the one that records the IP works if i remove the site recording but the browse recorder doesnt...

any help

edit!

I got the browsing counter fixed now just the recorder part dont work

Dynash
July 17th, 2008, 16:48
try: VALUES('', '' .$ip. '', '' .$date. '', '' .$u. '')");

Zombie
July 17th, 2008, 16:55
try: VALUES('', '' .$ip. '', '' .$date. '', '' .$u. '')");
Failed to work

for some reason it wont insert into the databse period