I want to replace the strings in file with result from database. But dont know, how to put the results into array to use it to replace like this:
$arrObj1 = array('#neco1#','#neco2#','#neco3#','#neco4#','#neco5#');
$arrObj2 = $column_from_database_in_array;
$result = str_replace($arrObj1,$arrObj2,$result);