<html>
<head>
<title>
Copy & Paste PHP Tutorial
</title>
</head>
<body>
<?php
echo (" Tutorial : ") ;
echo (" * Under Construction * ") ;
echo (" I have decided to start this section ") ;
echo (" to make a quick reference to various ") ;
echo (" PHP functions . This is not a complete ") ;
echo (" PHP tutorial . This is a Copy & Paste ") ;
echo (" quick tutorial . ") ;
echo (" Just try the codes to understand ! ") ;
echo (" Also a very good resource which I have ") ;
echo (" used too, can be found in php.net site . ") ;
echo (" You can try the codes here . ") ;
echo (" Send me your suggestions/ideas . ") ;
sleep (10) ;
echo (" Table of contents : ") ;
echo (" Variables ") ;
echo (" Printing ") ;
echo (" Strings ") ;
echo (" Arrays ") ;
echo (" Usefull functions ") ;
echo (" Files & Directories ") ;
echo (" Date and Time functions ") ;
echo (" Regular Expression ") ;
echo (" Sockets ") ;
echo (" Mail Functions ") ;
echo (" MySQL Functions ") ;
echo (" Cookies ") ;
echo (" Sessions ") ;
sleep (10) ;
echo (" Home ") ;
?>
</body>
</html>