Home » , » Create WEB with PHP Script part 1 | itfasilkom

Create WEB with PHP Script part 1 | itfasilkom

Posted by ITFasilkom Tutorial IT Programming on Sunday, January 8, 2012

How to write php in HTML syntax?
Initial step is to make the tag syntax <? and end ?>  writing rules that will be displayed on the server can use te echo or printf

example:



<html>
<head>
<title>Learning php itfasilkom</title>
</head>
<body>
<p>
<?php
echo ("Creat Web with php script part 1. itfasilkom.blogspot.com with echo <br />");
printf ("Creat Web with php script part 1. itfasilkom.blogspot.com with printf <br />");
printf("<BR>");
?>
</p>
</body>
</html>

==> search errors in the writing php scripts are usually found on the error line / lines previously. Technically echo() and printf() is a script to build rather than as a function.


0 comment:

Post a Comment