There aren't any modem modules that I am aware of but if you are using
UNIX you can just open the modem device and talk to it directly. What is
your application that would need to use a modem?
<?
/* Something like this */
$fp = fopen("/dev/modem", "rw");
fwrite($fp, "ATA");
echo fgets($fp, 128)
fclose($fp);
?>
-----Original Message-----
From: Scott Fletcher [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 18, 2001 8:11 AM
To: [EMAIL PROTECTED]
Subject: [PHP] PHP module for modem???
Hi!
Is there any module or software that I can use and compile it with
PHP for working with hte modem???
For example, I have cURL but it is a seperate software and can be
compile with PHP for certain things like FTP, Internet socket, etc. So,
is there ever one for the modem?
Thanks,
Scott
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]