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>\n";}
}
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>\n";}
and many other options....
How can I do that? do I need to array again?
Thanks!
if()syntax, maybe the problem is that$reviewdoesn't have aratingproperty?$response = json_decode($data, true);foreachI want to find out the value for theratingthan if it matches the number 0 I want it to echo<div class="0stars"></div>