What's the diff. between include() and Include_once().
Answer Posted / jamseer_syed
include_once() will useful for include the files many times
in the same program.
but the include() is useful for include the file only once
in the program otherwise if we use more then once it shows
error...
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Why do we use php?
What is scope of variable in php?
When is a conditional statement ended with endif?
How to execute an sql query? How to fetch its result?
What does csrf token mean?
How to open a file in php?
What does php mean?
Is php better than python?
What is the functionality of the functions strstr() and stristr()?
How do you parse and process html/xml in php?
How to get ip address of clients machine?
What is the use of $_request variable?
What is the output of the following php code?
How to pad an array with the same value multiple times?
What are traits?