<?php
//phpinfo();
error_reporting(E_ALL);
ini_set('display_errors', '1');
$commands = array(
  "/usr/bin/pdftk /home/celestis.co.za/public_html/silicon/htmltopdf/ex.pdf output /home/celestis.co.za/public_html/silicon/htmltopdf/cron.pdf",
);

foreach($commands as $command){
  $response = "";
  print ("<h2>Running commandline <pre>$command</pre></h2>");
  $result = exec($command, $response, $return_code);
  print "<pre>";
  print_r (array('result' => $result, 'response' => $response, 'return_code' => $return_code) );
  print "</pre>";
}
//echo exec('whoami');
?>