PHP - Variables and Data Types
You want to store a user's first name and age in PHP variables and then display them. Which code correctly declares and uses these variables?
1. $firstName = "Alice";
2. $age = 30;
3. echo "Name: $firstName, Age: $age";
