PHP Nested if Statement
Nested If You can have if statements inside if statements, this is called nested if statements. ExampleGet your own PHP Server An if inside an if: $a = 13; if ($a > 10) { echo "Above 10"; if ($a > 20) { echo " and also above 20"; } else { echo " but not above 20"; } } Try it Yourself »
0 التعليقات 0 المشاركات 3 الف مشاهدة 0 معاينة
إعلان مُمول