echo<body>
echo<img scr = "box1.php" height = 20% width = 20%>
echo</body>
What the hell is that ???
Read the PHP manual for more information about the echo function. Its syntax is: echo (<string>);
so...
echo ("<body>");
is right, but...
echo <body>
is wrong. I wonder where you see that.
Moreover you shouldn't use echo to ouput plain html, simply exit from PHP to HTML using ?><?php:
?>
<body>
<img...
<?php
As a beginner you should read the PHP manual or get a book.
JM