$command = $_POST['cmd'];$args = $_POST['args'];if($args == !empty && $command != 'reload'){}
Thanks guys, got it working!
Answer
empty is a function.
$command = $_POST['cmd'];$args = $_POST['args'];if(!empty($args) && $command != 'reload'){}
No comments:
Post a Comment