Вы можете вставить в разные таблицы, как это:
РЕДАКТИРОВАТЬ (новый код):
<?php
// Make a MySQL Connection
mysql_connect("localhost", "root", "root") or die(mysql_error());
mysql_select_db("double") or die(mysql_error());
// Insert a row of information into the table "example"
mysql_query("INSERT INTO example
(name, age) VALUES('Timmy Mellowman', '23' ) ")
or die(mysql_error());
// Insert a row of information into the table "example"
mysql_query("INSERT INTO example1
(name, age) VALUES('Timmy Mellowman', '23' ) ")
or die(mysql_error());
?>
Надеюсь, что это отвечает на ваш вопрос, потому что игрушка не может иметь двойное назначение (я думаю), но этовставляет в две разные таблицы MySQL ...
Удачи