Then when you submit the form to process the values that are selected...
PHP Code:
//$_POST[MyList] will be an array containing all the values selected by the user.
foreach( $_POST[MyList] as $val ){
mysql_query( "INSERT tbl_Temp SET Value = '$val' ");
}