[PHP-DEV] Bug #6882: imap_fetch_overview does no return anything even thought there is mail From: warlord_gregory <email protected>
Date: 09/25/00

From: warlord_gregory <email protected>
Operating system: RedHat 6.0
PHP version: 3.0.15
PHP Bug Type: IMAP related
Bug description: imap_fetch_overview does no return anything even thought there is mail

$mbox = imap_open("{localhost:143}",$username,$password);

$headers=imap_fetch_overview($mbox,"1,2:6");

  if(is_array($msgoverview)){
                reset($msgoverview );
                while( list($index,$msg) = each($msgoverview ) ){
                        print $msg->subject . "-" ."<br>";
                }//endwhile
   }//endif

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>