What is the syntax of PHP 'include' statement?

144. What is the syntax of PHP "include" statement?

  1. include {'filename'};
  2. <include 'filename'>;
  3. include <'filename'>;
  4. include 'filename';

Answer: D) include 'filename';

Explanation:

The syntax of the PHP include statement is:

include 'filename';

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.