8 lines
167 B
PHP
Executable File
8 lines
167 B
PHP
Executable File
<?php
|
|
ini_set( 'display_errors', 0 );
|
|
if ( $_SESSION['dostup']!='a' ) header( 'Location: /login/' );
|
|
switch( @$_POST['act'] ) {
|
|
case 'doit':
|
|
break;
|
|
}
|
|
?>
|