9 lines
142 B
PHP
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);
|
|
}
|
|
?>
|