InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following statements should be used to include a file?(a) #include ‘filename’;(b) include ‘filename’;(c) @include ‘filename’;(d) #include ;This question was addressed to me in my homework.Asked question is from Working with Databases-2 in portion Objects and Databases in PHP of PHP |
|
Answer» CORRECT choice is (b) include ‘FILENAME’; The explanation is: Include in PHP will takes all the code from the specified FILE and copies to the existing file containing include statement. An example of this- |
|