Is it good practice in PHP to have loads of IF; if Else statements ?

DeWire

New member
For example:
If ($day = "fri")
echo "Today is friday";
else if ($day ="mon")
echo "today is monday";
else if ($day ="tues")
echo "today is Tuesday" etc etc for the rest of the week...

Thanks for all help =] Above program is just an example to explain what it is im asking.
 
Back
Top