The backticks (``) is a Execution Operator. The backtick operator is disabled when safe mode is enabled or shell_exec() is disabled.
<?php $output = `ls -al`; // execute a shell command echo "<pre>$output</pre>"; ?>