NET SEND??? (Solved ...)

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
pedrokas
Forum Commoner
Posts: 32
Joined: Thu Jan 15, 2004 10:53 am
Location: Lisboa, Portugal

NET SEND??? (Solved ...)

Post 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
Last edited by pedrokas on Thu Feb 19, 2004 8:43 am, edited 1 time in total.
User avatar
nigma
DevNet Resident
Posts: 1094
Joined: Sat Jan 25, 2003 1:49 am

Post 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.
User avatar
pedrokas
Forum Commoner
Posts: 32
Joined: Thu Jan 15, 2004 10:53 am
Location: Lisboa, Portugal

solved

Post by pedrokas »

solved with "system()"

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


:D tks's
Post Reply