http://www.intense-media.com/problem.phps
Anyone know why i cant get $rss_parser->address to echo at the end if the LOGIN() function is called?
Um, where does $rss_parser->address get its value from? I see an $rss_parser being constructed (but I don't see any constructor in the class definition), then two other of its fields being given values, then the echo.
function characterData($parser, $data) { if ($this->insideitem) { switch ($this->tag) { case "LOGIN": $this->title .= $data; break; case "PASSWORD": $this->description .= $data; break; case "ADDRESS1": $this->address .= $data; break;
Yes, I saw that, but characterData doesn't get used until long after the echo...
Well then... can you rewrite that code to work?
Thats what i thought 🙂