}
$seances = array_value_recursive(‘date’, $data);
$langue = array_value_recursive(‘version’, $data);
$format = array_value_recursive(‘format’, $data);
$booking = array_value_recursive(‘booking_url’, $data);
$combined = array_merge_recursive(
array_combine($seances, $langue),
array_combine($seances, $booking),
array_combine($seances, $format)
);
foreach ($data as $value)
{
// conditions
if($value[‘legal’] == 7) {$legal = « Tout public« ;}
if($value[‘legal’] == 1) {$legal = « Mention -12 ans« ;}
if($value[‘legal’] == 2) {$legal = « Avertissement -12 ans« ;}
if($value[‘legal’] == 3) {$legal = « Mention -16 ans« ;}
if($value[‘legal’] == 4) {$legal = « Avertissement -16 ans« ;}
if($value[‘legal’] == 5) {$legal = « Mention -18 ans« ;}
if($value[‘legal’] == 6) {$legal = « Avertissement -18 ans« ;}
//
echo «
echo $value[‘synopsis’];
echo «
Genre : « .$value[‘kind’]. »
Durée : « .wordwrap($value[‘duration’] , 2 , ‘:’ , true ). »
« ;
echo « Réalisation : « .$value[‘director’]. »
« ;
$actors = $value[‘actors’];
$cast = str_replace(« , », », « ,$actors);
echo « Acteurs : « .$cast. »
« ;
echo $legal;
echo «
Choisissez votre séance* :
« ;
ksort($combined);
echo « « ;
echo «
« ;
//
echo «
echo « Bande Annonce :
« ;
echo « « ;
echo «
« ;
}
}
else
{ echo « une erreur est survenue »; }
?>