I have problem with my code when i\'m trying to save multiple data into database at the same time, this is my code to save into database:
foreach ($data as $
$command = Yii::app()->db->createCommand(); $command->insert('table_name',array('column_1'=>$value_1), 'column_2'=>$value_2));
and so on.