I need to extract name from a big data pouch .
$frame = '\"Amy Dardomba\":1,\"Kisb Muj Lorence\":1,\"Apkio Ronald\":1,....
there are more than 200-300 names which i have to put in array .
i tried ,
preg_match_all('#\/"(.*)\/":1#',$frame,$imn);
print_r($imn);
but it doesnt works . Please help me .
Thanks