Ciao a tutti,
Ho il seguente file list_stage.json e il suo contenuto è il seguente
Codice PHP:
{
"result": {
"title": "Internship",
"internship": [ {
"title": "How to Create an RSS Feed with PHP and MySQL",
"country": "Italy",
"Sector": "TEST"
} ]
}
}
Devo leggere questo file e filtrare le informazioni in base alla scelta dell'utente per esempio tutti gli stage con sector = TEST e successivamente filtrare per un'altro campo e cosi via..
Como posso fare? io ho pensato a degli if del tipo ma spero in qualcosa di più...
Codice PHP:
foreach ($posts as $post) {
if($post->sector == "TEST"){ // mostro le info
}else { echo "0 result"; }
}