Recent content by siLk

  1. S

    connecting to two mysql databases...

    sorry took so long to reply. anyway, you can do it by connecting to the database you want to execute the query on before the query is executed. That's the only way ive been able to get it to work correctly $db_one_connection $query_one $db_two_connection $query_two etc
  2. S

    connecting to two mysql databases...

    yep it works. here is the connect code I used with passwords etc removed ;) $conn = mysql_connect("localhost", "username", "password"); mysql_select_db("database_1_name", $conn); mysql_select_db("database_2_name", $conn); you can see this in effect at...
  3. S

    connecting to two mysql databases...

    ok I'll give it a shot, I am pretty sure I have tried this in the past, but I might have done something wrong then ;) I'll edit this post if it works or not...
  4. S

    connecting to two mysql databases...

    ...possible with php?
  5. S

    MySql and NULL

    ok, thanks for the info
  6. S

    MySql and NULL

    When checking the database to see if a value has been inserted into a field marked NULL do you actually check it as NULL or do you check it as an empty string ( "" ) ?
Back