Simple Template to Practice PHP
Use this simple template to practice your php code..
index.php
index.php
<!doctype html>
<html>
<head>
<title>PHP Code Practice</title>
<style>
body{font-family:verdana}.phpcoding{width:900px; margin: 0 auto;background:#f1f1f1}.headeroption, .footeroption{background:#2B81D7;color:#fff;text-align:center;padding:20px;}.headeroption h2, .footeroption h2{margin:0}.maincontent{min-height:400px;padding:20px;}
</style>
</head>
<body>
<div class="phpcoding">
<section class="headeroption">
<h2><?php echo "PHP Code Practice"; ?></h2>
</section>
<section class="maincontent">
<?php
echo "Strat from here...";
?>
</section>
<section class="footeroption">
<h2><?php echo "www.trainingwithliveproject.com"; ?></h2>
</section>
</div>
</body>
</html>
How to practice tutorials…
- Make a team with your friends (Member should be 4/5).
- Start to practice one tutorial series along with them.
- Don’t try to collect source code. Type the code while watching the tutorial.
- If you face any problem, discuss with team members to solve quickly.