How is this script meant to run, is it web server or console ?
There are some coding issues.
1) I don't do much PHP these days (haven't for a few years) however I'm fairly sure PDO is what you want to use. the mysql_ should be or are about to be deprecated.
2)
$slave_sql = mysql_query("SELECT * FROM popular_screamer_archive1 WHERE email = " . $row['email'],$slave);
Is wrong, email should be a string so at the very least (ignoring security issues, take a look into SQL Injections). Should be minimum this
$slave_sql = mysql_query("SELECT * FROM popular_screamer_archive1 WHERE email = '" . $row['email'] . "'",$slave);
Besides those simple things, its not quite clear on what you are actually wanting to do. You need to give us more information
Are you trying to create a 3rd table based on this data ?
What is the schema for the 2 tables ?
Do we really need to have all the fields returned from both tables ?
Are you wanting to output the data ?
Is there a reason every record in both tables will be stored in memory ? This is very inefficient, especially if the tables are quite large.