What are the differences between require and include,
include_once?
Answers were Sorted based on User's Feedback
Answer / sri harsha
include();--> include the file, but in case of file missing
throws a warning and continues execution of code of next line.
require();--> require also includes the file but in case of
file missing throws an fatal error and stop the execution of
the code of next line.
include_once();-->if same file was included first it will
not include the file another time.
| Is This Answer Correct ? | 46 Yes | 1 No |
Answer / tina
require - including a file/page ,if file doesn't exist,then
it gives error and doesn't execute.
include-including a file/page,if file doesn't exit,then it
gives warning and begin to execute.
include_once-including file/page, if it didn't been already
included,it includes else it won't.
| Is This Answer Correct ? | 41 Yes | 3 No |
Answer / ashwini
All three include(),include_once() and require() are used to
an include file into the current page.
If the file is not present, require(), calls a fatal error,
while in include() does not.
The include_once() statement includes and evaluates the
specified file during the execution of the script. This is a
behavior similar to the include() statement, with the only
difference being that if the code from a file has already
been included, it will not be included again. It does not
call a fatal error if file not exists. require_once() does
the same as include_once(), but it calls a fatal error if
file not exists.
| Is This Answer Correct ? | 5 Yes | 1 No |
What is the difference between static and dynamic websites?
What is cookies? How to create cookies in php?
How do you pass a variable by value in php?
What happens if an expected input field was not submitted?
In How many ways can u represent Not equal?Give Syntax of all ways..
what is the difference between mysql_fetch_array() and mysql_fetch_row()?
Which is the best method to fetch the data from mysql? 1.mysql_fetch_array() 2.mysql_fetch_object() 3.mysql_fetch_row() 4.mysql_fetch_assoc()
Explain what is smarty?
What is the difference between associative array and indexed array?
Do you know how can php and html interact?
Is php an array?
<?php include ("db.php"); $result = mysql_query("SELECT ques_id FROM questionbank order by ques_id limit 5 "); while($obj=mysql_fetch_array($result)) { $ad1[$obj['ques_id']]++;//Used an array and inserted the database query results into it. } $rand_keys=array_rand($ad1,1); //Did a random array function echo "First random id = ".$ad1[$rand_keys[0]]; echo "<br>Second random id = ".$ad1[$rand_keys[1]]; ?> <!--Its not working. Have any solution for this. -->