Quote:
Originally posted by TheMajor You can write everything in PHP, a default HTML page will be returned to the browser. |
If you write everything in PHP, when you click view source, you'll see the HTML output. So, say you write it in HTML:
That's exactly what you'll see when you view source. Then you can write it in PHP:
Quote:
<?php print("
My Webpage</p>"); ?>
|
And when you click view source, you'll see the HTML output, which is: