What will the PHP statement include("test.inc.php") do?

lbgp

New member
a.)Insert the text located in the test.inc.php file into the PHP program that contains the include() function.
b.)Produce an error because the file is not referenced by its full path name.
c.) Add HTML statements from the main program into the file specified in the include() function.
d.) Processs the code listed in the include() function file and stop.
 
Back
Top