Can we add images to the Json reponse ? I have made a custome JSON reponse but want to add image on some conditions like if flight in array is "AI" show image "http://sss.com/images/images/AI.png"
Any tutorial of idea will help me in this.
This is the response
$obj = json_decode($json);
foreach ($obj->flightStatuses as $flightstatus) {
echo $flightstatus->carrierFsCode,' ', $flightstatus->flightNumber,"<br>";
if ($flightstatus->carrierFsCode=='G8')
{ echo "Goair<br>";} elseif ($flightstatus->carrierFsCode== 'SG') {echo "Spicejet<br>";}elseif ($flightstatus->carrierFsCode== '9W') {echo "Jetairways<br>";}
elseif ($flightstatus->carrierFsCode== 'S2') {echo "JetConnect<br>";}elseif ($flightstatus->carrierFsCode== '6E') {echo "Indigo<br>";}
elseif ($flightstatus->carrierFsCode== 'AI') {echo "Air India<br>";};
How can I add image in this ? thanks in advance,