[wd_asp elements=’search’ ratio=’100%’ id=1]

Switch – Case (Instead of IF-Else)

5th April 2014

Php - Miscellaneous

php codehaven

if (isset($_GET['img']))
{
switch ($_GET['img'])
{
case 'pngFolder' :
header("Content-type: image/png");
echo base64_decode($pngFolder);
exit();

case 'gifLogo' :
header("Content-type: image/gif");
echo base64_decode($gifLogo);
exit();

case 'favicon' :
header("Content-type: image/x-icon");
echo base64_decode($favicon);
exit();
}
}