How would i go about walking through an array and deleting all entries (not just values) where ="" is present in the string
foreach($array as $key => $val) { if(strpos($val, '=""') !== FALSE) { unset($array[$key]); } }
that worked great... lastly, how would i remove:
+", "
from any string within the array? i beleive there is a line feed/carriage return between the comma and the double quote