Unit 3: Making Decisions and Repeating Yourself
Conditional Statements Conditional statements are used to perform different actions based on different conditions. In PHP we have the following conditional statements: if statement – use this statement to execute some code only if a specified condition is true if..else statement – use this statement to execute some code if a condition is true […]
Continue Reading