Q1. What is the difference between include, require, include_once and require_once?
- include: includes a file; on failure emits a warning and execution continues. - require: includes a file; on failure emits a fatal error and stops. - include_once / req...