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
Line 
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();
13$app->sslOn();
14
15require_once 'codebase/lib/FormValidator.inc.php';
16
17
18/********************************************************************
19* CONFIG
20********************************************************************/
21
22
23
24/********************************************************************
25* MAIN
26********************************************************************/
27
28
29
30/********************************************************************
31* OUTPUT
32********************************************************************/
33
34
35
36/********************************************************************
37* FUNCTIONS
38********************************************************************/
39
40
41?>
Note: See TracBrowser for help on using the repository browser.