PHP Tutorial - If-Else Statements

Unlock Premium Features: AI explanations (Hinglish), Indian voice & Videos
Sign Up Free

๐Ÿ”€ If-Else - Decisions

Real Life:

๐ŸŽ“ Login Check:
If password correct โ†’ Welcome
Else โ†’ Invalid password

๐ŸŒก๏ธ Temperature:
If > 30ยฐC โ†’ Hot
Else if > 20ยฐC โ†’ Normal
Else โ†’ Cold

Syntax

if (condition) {
    // code
} elseif (condition) {
    // code  
} else {
    // code
}

Comparison Operators

OperatorMeaning
==Equal (value)
===Identical (value + type)
!=Not equal
>Greater than
<Less than

๐Ÿค– AI Tutor Unlock Karo!

Apni language mein coding seekho - Hindi, Marathi, Gujarati aur 10+ Indian languages mein!

  • Hinglish mein explanations
  • Real-life examples
  • Beginner-friendly
Free Signup Karo

Example

<?php
if ($age >= 18) {
    echo "Adult";
} else {
    echo "Minor";
}
?>