Im not sure if this will work, but bare with me. You will need one table with id auto_increment(table1) and one table with just id(table2).
First enter the values into table1:
$sql = 'INSERT INTO table1 VALUES(......)';
$result = mysql_query($sql,$db);
Then, get the the results of the ids from the table1, put them into an array, and do individual queries:
$sql = "SELECT * FROM table1";
$result = mysql_query($sql,$db);
while($row = mysql_fetch_array($result))
{
$id = $row['id'];
$content = $row['content'];
//ect...
$sql = 'INSERT INTO table2 VALUES ('$id', '$conetent')";
$results = mysql_query($sql,$db);
}
Like I said, Im not sure if that will work. The way abman said it is probably easier and more efficient, if you had a large num of rows to add, you would be running a whole lot of queries.