This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Study PHP at W3Schools.com
9
<?php // declare variables $txt1 = "Learn PHP"; $txt2 = "W3Schools.com"; $x = 5; $y = 4; // display HTML markup, text and variables values print "<h2>" . $txt1 . "</h2>"; print "<p>Study PHP at " . $txt2"<br>"; print "$x + $y</p>"; ?>