alertboxes in PHP
Posted: Tue May 28, 2002 11:34 am
Is it possible to create an alertbox in PHP
If it is, how is it done
If it is, how is it done
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
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);
?>