Hallo,
nachfolgendes Fragment laeuft in der DOS-Box problemlos, aber wenn ich es im Browser ueber localhost(Apache2,PHP5.1.4) aufrufe, passiert gar nix, d.h. das VB6-Programm wird nicht gestartet.
<?php
ini_set('error_reporting', E_ALL);
$ii = 0;
$eg = array();
$cmmd = 'D:\\VB6\\Helpers\\Bank\\getSaldo.exe';
exec($cmmd, $eg, $ii);
print_r($eg);
print_r($ii);
?>