parse-community / parse-php-sdk

The PHP SDK for Parse Platform
https://parseplatform.org/
Other
811 stars 346 forks source link

parse-php-sdk #400

Closed Immowebian closed 6 years ago

Immowebian commented 6 years ago

Hi can anyone solve this issue. i've trying from last 2 days. but it still there.

I done this but not worked at all.

$query = new ParseQuery("Event"); $query->equalTo("event_name", "event1"); $question = $query->find(); for($i=0;$i;$i++){ $question[$i]->set("event_city", $event_city); $question[$i]->set("event_state", $event_state) $question[$i]->save(); } @soniurvashi11

Immowebian commented 6 years ago

Any one know the parse and php ?

dplewis commented 6 years ago

@Immowebian Sorry for the late reply. It look like your for loop expression is wrong.

Should be for ($i = 0; $i < count(question); $i++)