🎴 Flashcard Mode
PHP Programming Fundamentals
Card1 / 30
Mastered0
Review0
QuestionClick to flip
Which of the following is not a comment style in PHP?
AnswerClick to flip back
A
<!__ __>
💡 Explanation:
PHP supports three comment styles: single-line comments using // and #, and multi-line comments using /* */. The syntax <!__ __> is not a valid PHP comment style - it resembles HTML comments but is incorrect for PHP code.