$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'){
}
$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'){
}
Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...
No comments:
Post a Comment