-
-
Notifications
You must be signed in to change notification settings - Fork 401
/
index.php
37 lines (33 loc) · 986 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
//============================================================+
// File name : index.php
// Begin : 2002-01-11
// Last Update : 2011-05-21
//
// Description : Redirect browser to main page
//
// Author: Nicola Asuni
//
// (c) Copyright:
// Nicola Asuni
// Tecnick.com LTD
// www.tecnick.com
//
// License:
// Copyright (C) 2004-2024 Nicola Asuni - Tecnick.com LTD
// See LICENSE.TXT file for more information.
//============================================================+
/**
* @file
* Main page of TCExam
* Redirects to Public Area index.
* @package com.tecnick.tcexam.public
* @brief TCExam Public Area
* @author Nicola Asuni
* @since 2004-04-20
*/
header('Location: public/code/index.php'); //redirect browser to public main page
//============================================================+
// END OF FILE
//============================================================+