This is the compilation of simple exercises on basic PHP.
- PHP include() function.
- HTML form and how to handle querystring using GET.
- Simple calculator to visualize mathematical operators.
- Accepting code and translating to the real value using if…else (selection).
- Drop-down to pick date of birth using for (repetition).
- DOWNLOAD the complete PHP codes here.
We are using the BootStrap web frontend framework (enhanced wit FLAT-UI)
This is the code sample;
<!DOCTYPE html>
<html lang="en">
<head>
<title>FSTM.kuis.edu.my - PHP Include</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Loading Flat UI Pro -->
<link href="css/flat-ui-pro.css" rel="stylesheet">
<link rel="shortcut icon" href="img/favicon.png">
</head>
<body>
<?php include ("navbar.php");?>
<div class="container">
<br>
<br>
<div class="row">
<div class="col-md-9" name="maincontent" id="maincontent">
<div id="exercise" name="exercise" class="panel panel-info">
<div class="panel-heading"><h5>PHP include ( ) function</h5></div>
<div class="panel-body">
<p>
The include statement includes and evaluates the specified file.
</p>
<p>When a file is included, the code it contains inherits the variable scope of the line on which the include occurs. Any variables available at that line in the calling file will be available within the called file, from that point forward. However, all functions and classes defined in the included file have the global scope.</p>
<p>To learn more, head to <a href="http://php.net/include" target="_blank" class="btn btn-danger">php.net/include</a></p>
<img src="img/php-include-illustrated.png" width="100%" class="img img-thumbnail">
</div> <!--body panel main -->
</div><!--toc -->
</div><!-- end main content -->
<div class="col-md-3">
<?php include ("sidebar-menu.php");?>
</div><!-- end main menu -->
</div>
</div><!-- end container -->
<?php include ("footer.php");?>
</body>
</html>
Click thumbnail to magnify the screenshots.
Comments
Post a Comment