require_once 'Net/NNTP.php';
array Net_NNTP::getOverviewFormat ()
array Net_NNTP::getOverviewFormat
Returns the name of message headers, which is provided by every message
array - list of header names
This function can not be called statically.
Net_NNTP::getOverview()
Example 48-1. Using getOverviewFmt()
... $tblheaders = $nntp->getOverviewFormat(); // create a table headline echo '<table>'; echo '<tr>'; foreach($tblheaders as $th) { // print headernames echo '<th>'.$th.'</th>'; } echo '</tr>'; ... // draw the header data of messages echo '</table>';