Hi,
For the PHP-GTK project I have created a small wrapper application called
php_win.exe. It is used to launch a GTK script without showing the "DOS"
box. You can download a copy from http://kromann.info/php-gtk.php and see
if it does the trick for you.
- Frank
> This requires some Win32 magic
This requires some Win32 magic in the invoking Win32 program, not in the
generic PHP executable - so your question is somewhat off-topic for this
list (though this may not have been apparent).
The hint:
STARTUPINFO si;
memset(&si,0,sizeof(si));
si.cb = sizeof(si);
si.dwFlags
> Is it possible to make the php.exe under
> window's fork, so it isn't visible in the
> start bar? I ask because I would like to
> make a PHP program that runs periodically
> in the background, and I know how to start
> it at computer start time, but it makes that
> damned dos window pop up. There
Is it possible to make the php.exe under
window's fork, so it isn't visible in the
start bar? I ask because I would like to
make a PHP program that runs periodically
in the background, and I know how to start
it at computer start time, but it makes that
damned dos window pop up. There are
external