PHP Classes

File: hello_world.php

Recommend this page to a friend!
  Classes of Pedram Nimreezi   Mojavi examples   hello_world.php   Download  
File: hello_world.php
Role: Example script
Content type: text/plain
Description: HelloWorld Template
Class: Mojavi examples
Examples Mojavi is an MVC framework
Author: By
Last change:
Date: 21 years ago
Size: 536 bytes
 

Contents

Class file image Download
<?php require_once('_header.php'); ?>

<div class="title">
     Hello, World!
</div>
<br/>
<div class="text">
    Welcome to the Hello, World example. This does nothing but show you the very basics of creating an action.
    <br/><br/>
    <a href="<?= $mojavi['current_module_path'] ?>">Click here</a> to go back to the Default module index,
    or select another example from the following list:
    <br/><br/>
    <?php require_once($controller->getModuleDir() . 'lib/examples.inc'); ?>
</div>

<?php require_once('_footer.php'); ?>