Conditional statements allow PHP to make decisions based on specific conditions. An if/else statement checks whether a condition is true and executes different code accordingly. A switch statement compares one variable against multiple possible values and runs the matching case. Conditions help control program flow and allow dynamic responses based on data.