Improvement suggestion
Remove duplicates
Ioannis http://www.jbaron.gr

if you have products with the same name but different, lets say, model, it is better to remove the duplicates

Just change :

print json_encode($return_arr);

to:

print json_encode(array_unique($return_arr));

More...