PHP expert |
|
if ($breedte > 120)
{ echo "The image can be maximum 120px width!"; }
elseif ($hoogte > 120)
{ echo "The image can be maximum 120px high!"; }
else
{
if ($breedte > 120) { echo "The image can be maximum 120px width!"; } elseif ($hoogte > 120) { echo "The image can be maximum 120px high!"; } else {
=>
if ($breedte > 120)
{ exit "The image can be maximum 120px width!"; }
elseif ($hoogte > 120)
{ exit "The image can be maximum 120px high!"; }
else
{
if ($breedte > 120) { exit "The image can be maximum 120px width!"; } elseif ($hoogte > 120) { exit "The image can be maximum 120px high!"; } else {
( hij kijkt wel of de breedte en hoogte groter zijn, maar hij doet niets, hij gaat gewoon verder met het script. ) |