php-general | 2001122
Date: 12/18/01
- Next message: TD - Sales International Holland B.V.: "[PHP] Arrays/Hashes"
- Previous message: Julio Nobrega Trabalhando: "Re: [PHP] Re: $PHPSESSID on PHP 4.1.0"
- In reply to: Scott Fletcher: "[PHP] PHP module for modem???"
- Next in thread: Charles Williams: "Re: [PHP] PHP module for modem???"
- Reply: Charles Williams: "Re: [PHP] PHP module for modem???"
- Reply: Scott Fletcher: "Re: [PHP] PHP module for modem???"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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:scott <email protected>]
Sent: Tuesday, December 18, 2001 8:11 AM
To: php-general <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: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: TD - Sales International Holland B.V.: "[PHP] Arrays/Hashes"
- Previous message: Julio Nobrega Trabalhando: "Re: [PHP] Re: $PHPSESSID on PHP 4.1.0"
- In reply to: Scott Fletcher: "[PHP] PHP module for modem???"
- Next in thread: Charles Williams: "Re: [PHP] PHP module for modem???"
- Reply: Charles Williams: "Re: [PHP] PHP module for modem???"
- Reply: Scott Fletcher: "Re: [PHP] PHP module for modem???"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

