Re: Difference between include and require



On Sep 4, 8:23 pm, Bunty <bunty.virad...@xxxxxxxxx> wrote:
When we want to call another file in the existing file at that time we
can use include and require both.Please tell me what's the difference
between them?

require throws error if the file is missing. You should always use
require and not include.
.