Lets Start From Hello World :) : Simple example of php to print name on webpage with combination of html <html> <head></head> <body> <p>Html work</p> <br/> <?php // print output echo 'echo command print on webpage'; ?> </body> </html>
<html>
<head></head>
<body>
<br/>
<?php
// print output
echo 'echo command print on webpage';
?>
</body>
</html>
Post a Comment
No comments:
Post a Comment