Result Size:
625 x 571
tryphp_print2.php:
<!DOCTYPE html> <html> <body> <?php $txt1 = "Learn PHP"; $txt2 = "BEGTUT.COM"; $x = 5; $y = 4; print "<h2>" . $txt1 . "</h2>"; print "Study PHP at " . $txt2 . "<br>"; print $x + $y; ?> </body> </html>
Learn PHP
Study PHP at BEGTUT.COM
9