In a php script: -What is the difference between
echo "<p>info</p>"
and simply writting html content (what include "htmlfile" basically does)?
include "file.html"
Observation: I read that echo sends a command to web server to send http response, while including a html file waits till the processing php code is done.
In the latter case, does the php module "echoes" at the end of the processing all the html that was written in the php file?
Thank you!