KLanding/config/test2.php
2016-02-06 18:23:54 +00:00

9 lines
142 B
PHP

<?php
$p = popen('Update.bat', 'r');
if ($p)
{
while (!feof($p))
echo gets($p); // get output line-by-line
pclose($p);
}
?>