PHP Made Simple

Welcome To My Topic To Learn PHP Very Easy
First Of All Normaly Open Notepad Or Any PHP IDE Now Let’s Start!
There Is Two Ways To Code PHP First One without html tags


<?php ?>

Second Way With HTMLTAGS[witch i use all the times


<html>
<body> <?php
echo "Hello World";
?> </body>
</html>

Now Some Out Going Examples
To Create Functions We Use
and open and closeing

function functionname(param1,param2) 
{
functionname(param1,param2); // Comment
}
/*
Lined Comment
*/

That’s all for now To Be Done Later