1. Which PHP loop always executes at least once?
2. Which loop is best for iterating over arrays?
3. How do you stop a loop immediately in PHP?
4. What does the continue keyword do in a loop?
5. Which loop checks the condition before running the block?
6. Which superglobal is used to collect data sent by a POST form?
7. Which method is safer for sending passwords?
8.How to access the value of an input field named “email” using POST?
9. Which function converts HTML special characters to safe text?
10. Which function checks if a field is empty?
11. Which keyword is used to define a function in PHP?
12. Which function prints readable array information?
13. What is the default return value of a PHP function if none is given?
14. Which function counts elements in an array?
15. What is the use of the global keyword in a function?
16. Can a PHP function call itself?
17. What does the return statement do in a function?
18. Which is a built-in PHP string function?
19. What is the output of strlen("PHP")?
20. Which function checks if a variable is a number?
