<?php session_start(); $el = $_GET['el']; include('newsread.php'); echo ' <html> <head>.......
If the connection is in this position (before html), an extra line appears. If it is after the break in echo break, then what is in front of it (html and head) is lost. In the inclusive nothing is displayed. What is the problem?
'<html>'
in echo displays the character of the new line. and this is why it is lost after the'<head>'
it is necessary to see how you insertinclude
in the 'gap' - FLKecho '<html>';
"? why not do it outside php? or something I do not understand? - andrybak