Hi, I want to create a functions that automatic create an MySql commands: Lets say I have data like this: USER Id : 348374 Name : Raul Berina Email : raul_berina_fq@xxxxxxxxx status : confirm and PHP script should create a result like this INSERT INTO `user` ( `id` , `Name` , `Email` , `status`) `departmentid` , `status` ) VALUES ( '348374', 'Raul Berina', 'raul_berina_fq@xxxxxxxxx', 'confirm'); The purpose of this script is to transfer data into another database (Let say in other hosting company). Inquiring mind here needs help. Thanks in advance. RAul BErina