Use the backtick operator in PHP
Description
The following code shows how to use the backtick operator.
Example
<?
//print directory contents
print(nl2br(`ls -la`));
?>
The following code shows how to use the backtick operator.
<?
//print directory contents
print(nl2br(`ls -la`));
?>