The sign up form for MySQL Freaks Forum is down for maintainance :( I want to consolidate this into one query [code] $insert_items = "INSERT INTO equipped_items VALUES('$userid', '0', '0', '0', '0', '0', '0')"; if ($db_result = $db_conn->Execute($insert_items)) { $db_result->Close(); } $insert_clothing = "INSERT INTO clothing_worn VALUES('$userid', '0', '0', '0', '0', '0', '0', '0')"; if ($db_result = $db_conn->Execute($insert_clothing)) { $db_result->Close(); } $insert_stats = "INSERT INTO stats VALUES('$username', '$userid', '$hp', '$hp', '$intel', '$speed', '$strength', '$agility', '$defense', '$theft')"; if ($db_result = $db_conn->Execute($insert_stats)) { $db_result->Close(); }[/code] All the tutorials I see when I google Multiple Inserts is for putting multiple entries into one table, and I'm not sure how to do what I want. Help? *thanks*