6 lines
206 B
PHP
Executable File
6 lines
206 B
PHP
Executable File
<?php
|
|
|
|
$op = isset($dataGet['op']) ? $dataGet['op'] : 'index';
|
|
$op = in_array($op,array('index','deleted','unused')) ? $op : 'index';
|
|
|
|
$setfor = isset($dataGet['setfor']) ? $dataGet['setfor'] : 'index'; |