source: trunk/docs/example_script_template.php @ 143

Last change on this file since 143 was 143, checked in by scdev, 18 years ago

Q - global comments formatting change

File size: 961 bytes
RevLine 
[1]1<?php
2/**
3 * <##>
4 * Code by Strangecode :: www.strangecode.com :: This document contains copyrighted information.
5 * @author  Quinn Comendant <quinn@strangecode.com>
6 * @version 1.0
7 * @since   <##>
8 */
9
10require_once dirname(__FILE__) . '/_config.inc.php';
11
12$auth->requireLogin();
[136]13$app->sslOn();
[1]14
15require_once 'codebase/lib/FormValidator.inc.php';
16
17
[143]18/********************************************************************
19* CONFIG
20********************************************************************/
[1]21
22
23
[143]24/********************************************************************
25* MAIN
26********************************************************************/
[1]27
28
29
[143]30/********************************************************************
31* OUTPUT
32********************************************************************/
[1]33
34
35
[143]36/********************************************************************
37* FUNCTIONS
38********************************************************************/
[1]39
40
41?>
Note: See TracBrowser for help on using the repository browser.