I am trying to insert data from different tables into single table data to be inserted has an array value, how can i do that?? hmmmmmmmmmmm ;(
Are you trying to say that you are getting data from different tables to an array and then trying to insert that array into another table?
In pure SQL, or in PHP. It's trivial in PHP - just do selects on the "multiple tables" and fill PHP variables, then do one insert statement using those variables. (Or learh the SQL for including a select in an insert.)