If it is, how is it done
alertboxes in PHP
Moderator: General Moderators
alertboxes in PHP
Is it possible to create an alertbox in PHP
If it is, how is it done
If it is, how is it done
it depends on if you're making a console script or web based application.
if you're making a console script on win32
you could use this.
if you're making a console script on win32
Code: Select all
<?php
dl ("path\to\extensions\php_w32.dll")
w32api_register_function("User32.dll", "MessageBoxA", "long"); MessageBoxA(NULL, "Hello World!", "This is your message", 0);
?>