Ask Your Question
0

Why is it that PHP include is not adding HTML, but is able to execute document download and email sending?

asked 2021-09-16 11:00:00 +0000

woof gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2021-10-31 14:00:00 +0000

david gravatar image

PHP include function is designed to include and execute PHP code within a file. It does not just add HTML content to the page. When PHP includes a file, it is interpreted as PHP code, and any PHP code within that file will be executed.

While it is possible to include HTML files using PHP include function, it is not recommended, and there are better ways to include HTML content in a PHP file, such as using the filegetcontents() or readfile() functions.

As for the document download and email sending, these functionalities are implemented using PHP functions such as header() and mail(). These functions are designed to execute specific tasks and do not require the inclusion of HTML content.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-09-16 11:00:00 +0000

Seen: 16 times

Last updated: Oct 31 '21