Tagged Questions

3
votes
2answers
905 views

What PHP class to use for accessing NNTP

I'd like to access NNTP servers, groups, and messages through PHP. Is there any existing class you'd recommend? Preferably PHP5 and good OOP.
0
votes
1answer
36 views

newsgroup nntp protocol talk with fsockopen - how to get size

In the code below I can get a list of "message-id"s in a group I selected earlier. Now with that info I can retreive the header with head "message-ID" how do I find out what the size of the article ...
0
votes
1answer
44 views

PHP and NNTP problems using imap_open

I am having a bit of trouble with NNTP and PHP (following the directions in the PHP manual, I threw in this quick test: <?php $server = "{news.newsserver.com/nntp:119}"; if ($nntp = ...