Multiple choice php

Include files must have the file extension ".inc"

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

PHP include files can have any extension - .inc, .php, .txt, or no extension at all. The .inc extension is a convention but not a requirement. What matters is that the file contains valid PHP code. Using .php is often more secure since web servers won't display the source code.