PHP Classes

File: examples/actioncontroller/app/templates/dispatch.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/actioncontroller/app/templates/dispatch.php   Download  
File: examples/actioncontroller/app/templates/dispatch.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 1,079 bytes
 

Contents

Class file image Download
<?php

?>
<html>
<body>
    <h2>Front Controller: Page - Dispatch Action Controller</h2>
    <ol>
        <li><a href="?controller=example">Default controller, no action specified.</a></li>
        <li><a href="?controller=example&action=foo">Default controller, specific action - foo.</a></li>
        <li><a href="?controller=example&action=bar">Default controller, specific action - bar.</a></li>
        <li><a href="?controller=dispatch">Dispatch Action controller, no action specified.</a></li>
        <li><a href="?controller=dispatch&action=foo">Dispatch Action controller, specific action - foo.</a></li>
        <li><a href="?controller=dispatch&action=bar">Dispatch Action controller, specific action - bar.</a></li>
        <li><a href="?module=module1&controller=example">Module and controller, no action specified.</a></li>
        <li><a href="?module=module1&controller=example&action=bar">Module and controller, specific action specified.</a></li>
    </ol>
    <br/>Flash var foo: <?php echo isset($foo) ? $foo : 'NULL'; ?><br/>

    <br/>
    <p><a href="../">Return to Examples</a></p>
</body>
</html>