is this possible if it is how?
connect to one database...repeat as necessary
I made something like this but it gave error
@mysql_select_db("account") or die("Veritabaninda bir hata olustu!"); @mysql_select_db("pvp") or die("Veritabaninda bir hata olustu!");
what is the problem
this will give you (or at least me) a more meaningful error:
mysql_select_db('account') or die(mysql_error()); mysql_select_db('pvp') or die(mysql_error());