more input,
you want each item in the array to be a row in the database?
$db=mysql_connect("host","name","pass");
mysql_select_db("database",$db);
foreach($array as $thisrow){
mysql_query("INSERT INTO tablename ('id','this') values ('','$thisrow')",$db);
}