”); … echo(“”); ?> mean?
The question is the tag
I\'ve seen one script I am working on, uses it:
echo (\"
\");
.... .
The PHP function echo() prints out its input to the web server response.
echo("Hello World!");
prints out Hello World! to the web server response.
echo("");
prints out the tag to the web server response.
echo do not require valid HTML tags. You can use PHP to print XML, images, excel, HTML and so on.
tag.