-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
27 lines (21 loc) · 944 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
<?php
/******************************************************************************
Awkwords - random word generator
Version: 1.2
(note: every other mention of current version number in the source files
is tagged on its line with this: [awkwords-version] )
Author: Petr Mejzlík <petrmej@gmail.com>
License:
Everyone is allowed to freely use and distribute this software. It can be
incorporated into other software without any limitations. Modifying
the software and distributing a modified version is allowed as long
as the modified version is clearly marked distinct from the original one.
This license is GNU LGPL compatible.
******************************************************************************/
error_reporting(E_ALL & ~E_NOTICE); // vypisování všech chyb
require_once "core.php";
switch($_POST["submit"]) {
case "Save...": require "./save.php"; break;
default: require "./shell.php";
}
?>