-
Notifications
You must be signed in to change notification settings - Fork 76
/
tutorial.php
34 lines (32 loc) · 1.72 KB
/
tutorial.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
<?php
#################################################################################
## ##
## -= YOU MUST NOT REMOVE OR CHANGE THIS NOTICE =- ##
## ##
## --------------------------------------------------------------------------- ##
## ##
## Project: ZravianX ##
## Version: 2011.12.03 ##
## Filename: tutorial.php ##
## Developed by: ZZJHONS ##
## License: Creative Commons BY-NC-SA 3.0 ##
## Copyright: ZravianX (c) 2011 - All rights reserved ##
## URLs: http://zravianx.zzjhons.com ##
## Source code: http://www.github.com/ZZJHONS/ZravianX ##
## ##
#################################################################################
if(!isset($_GET['s'])) {
$_GET['s'] = ""; }
if ($_GET['s'] == "") {
include("Templates/Tutorial/1.tpl"); }
if ($_GET['s'] == "1") {
include("Templates/Tutorial/1.tpl"); }
if ($_GET['s'] == "2") {
include("Templates/Tutorial/2.tpl"); }
if ($_GET['s'] == "3") {
include("Templates/Tutorial/3.tpl"); }
if ($_GET['s'] == "4") {
include("Templates/Tutorial/4.tpl"); }
if ($_GET['s'] == "5") {
include("Templates/Tutorial/5.tpl"); }
?>