<?php
  // listwork.php
  // Oversees listwork.py Python
  // RJM Programming

  exec('echo "<html><body><textarea style=width:100%;height:100%;>" > ' . dirname(__FILE__) . '/listwork.html');
  $htmlurl=str_replace(":80/","/",str_replace(":443/","/","http://" . $_SERVER['SERVER_NAME'] . ":" . $_SERVER['SERVER_PORT'] . "" . str_replace('.php','.html',explode('?',$_SERVER['REQUEST_URI'])[0])));
  exec("/usr/bin/python " . dirname(__FILE__) . "/listwork.py >> " . dirname(__FILE__) . "/listwork.html");
  exec('echo "</textarea></body></html>" >> ' . dirname(__FILE__) . '/listwork.html');
  sleep(2);
  //header("Location: http://" . $_SERVER['SERVER_NAME'] . ":" . $_SERVER['SERVER_PORT'] . "/listwork.html");
  header("Location: " . $htmlurl);
?>
