Here is my problem
CODE:
$response = json_decode($data);
$arr = (array) $response;
if(is_array($arr['reviews'])){
foreach($arr['reviews'] as $review){
if ($review->rating == "0") {echo "<div class="0stars"></div>
";}
}
It throws me an error when it gets to the if
portions
Parse error: syntax error, unexpected '0' (T_LNUMBER), expecting ',' or ';' in /home....
I've tried:
$reviewstar = $review->rating;
if ($reviewstar == "0") {echo "<div class="0stars"></div>
";}
and many other options....
How can I do that? do I need to array again?
Thanks!