source: trunk/docs/examples/script_template.php @ 288

Last change on this file since 288 was 288, checked in by quinn, 17 years ago

Organized codebase examples under docs/examples. Added contact form example.

File size: 967 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.