I have the following:
$fontfind .= '15,';
$fontfind .= '25,';
$fontfind .= '35,';
$found = explode(",", $fontfind);
When I do:
print_r(explode(",",$fontfind));
It prints
Array ( [0] => 15 [1] => 25 [2] => 35)
but
print $found[0];
It prints
1
What's going on?