For those running PHP & NT4 or Win2K:

Copy the code into a index.php page and run from web server

Have fun

Alex

<---------
    <?PHP
    if ($QUERY_STRING == "send") {                                               // 
Checks query string
    exec ("net send \"" . $username . "\" " . $message); // Executes Net.exe send 
command from the system folder in Windows NT
    print "Message sent";                                                              
  // pretty self explanatory
    }
    /* Prints the send message Form */
    print "
    <form action=index.php?send method=post>
    <input type=hidden name=username value=administrator><br>
    <input type=text name=message value=message><br>
    <input type=submit><input type=reset>
    ";
    ?>

------->


--------------------------------------------------------------------------------
For unsubscription of this list send an email to [EMAIL PROTECTED] with email
data containing unsubscribe emailadd sambar

Reply via email to