Hi
I've been doing a study of some PHP code developed by another author in 2002.
The article could be found at:
http://www.devshed.com/c/a/PHP/Building-A-PHPBased-Mail-Client-part-2/3/
The functions I need help with in understanding are:
function parse($structure) //custom function developed by author
function get_attachments($arr) //custom function developed by author
The following line gave me difficulties:
$this = $parts[$x];
I have studied this line of code and would like to know if $this has some sort of special meaning in PHP?
I tried to change $this to $result and the application seemed to be working, but not giving the correct result.
Any help would be appreciated.