Posted by bill on 06/14/07 01:19
Turning on error_reporting(E_ALL); was quite an eye opener as to
how much "fixing" PHP will do for the sloppy coder.
I fixed all of the errors except:
Notice: Undefined property: parts in
/ContactManagement/contact_mainpage.php on line 120
where the line in question is:
$parts = $struct->parts;
where $struct = = imap_fetchstructure($in, $mid);
$struct is an object, parts is an array of objects
what would the correct syntax of the statement be ?
bill
[Back to original message]
|