-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (26 loc) · 790 Bytes
/
index.php
File metadata and controls
27 lines (26 loc) · 790 Bytes
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
<?
/*
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# _ ___ _ #
# (_)__ \ | | #
# ___ ___ _ ) |_ _____| |__ #
#/ __|/ __| | / /\ \ /\ / / _ \ '_ \ #
#\__ \ (__| |/ /_ \ V V / __/ |_) | #
#|___/\___|_|____| \_/\_/ \___|_.__/ #
#JORGE ZULUAGA (C) 2011 #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#ENTRY PAGE
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
$RELATIVE=".";
$PAGETITLE="Entry page";
$LIBFILE="$RELATIVE/lib/sci2web.php";
include($LIBFILE);
echo<<<CONTENT
<html>
<head>
<meta http-equiv=refresh content='0;URL=$PROJ[ENTRYPAGE]'>
</head>
</html>
CONTENT;
?>