imap_pop , array problem . - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: imap_pop , array problem . (/showthread.php?tid=12017) |
imap_pop , array problem . - El Forum - 10-02-2008 [eluser]nebi[/eluser] Hi! I am using the imap_pop lib and using the example from the wiki and made a small modify Code: $this->load->library('imap_pop'); email_view.php : Code: <html> Error code : Code: A PHP Error was encountered I trying to get the messasage text from the mail from the array but no luck . imap_pop , array problem . - El Forum - 10-02-2008 [eluser]acoda[/eluser] Hi nebi, Had a quick look at this for you and if you change your view file to this: Code: <html> You should see the massage text from your e-mail. You just miss read the array and referenced it wrong, easily done. imap_pop , array problem . - El Forum - 10-03-2008 [eluser]nebi[/eluser] Thanks acoda , it works great! |