Page 1 of 1

NET SEND??? (Solved ...)

Posted: Wed Feb 18, 2004 5:27 am
by pedrokas
Hi
Can i use a "net send $a_user $msg_e" form a php page???
or if it is not possible some other way to do it..

Tks

Posted: Wed Feb 18, 2004 9:42 pm
by nigma
probably, there are various php functions that can be used to execute shell commands

Check out the table of contents on thie page http://us4.php.net/manual/en/ref.exec.php for more info on the functions that you might be able to use.

solved

Posted: Thu Feb 19, 2004 8:41 am
by pedrokas
solved with "system()"

(...)
$str = system("net send $user $msg",$retval);
(...)


:D tks's