Can I get some xml parser assistance?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Waddymelon
    So Fucking Banned
    • Oct 2009
    • 17349

    #1

    Can I get some xml parser assistance?

    Since AFF decided to add these stupid brackets to their xml feed, it broke my scripts.

    Living in <![CDATA[Newport Beach]]>, <![CDATA[California]]><br>
    <![CDATA[United States]]>

    the damn <!CDATA[ and ]] used to not be there.... since they added it, my geo stuff isnt showing up on my pages because my parser doesnt work now.

    Anybody know how to fix it? My parser has this:
    Code:
        $g1 = strpos($xml, "<city>", $i);
        $g2 = strpos($xml, "</city>", $g1);
        $city = str_replace(array("<city>","</city>"), "", substr($xml, $g1, $g2 - $g1));
    And of course its New Year's Eve and getting AFF help just isnt going to happen.
  • Waddymelon
    So Fucking Banned
    • Oct 2009
    • 17349

    #2
    I fixed it... left the parser alone and stripped the codes out in index.php

    Code:
     // swap listings into main template
     $template = str_replace('%listings%', $listings, $template);
     $template = str_replace('%sendurl%', $sendurl, $template);
     $template = str_replace('<![CDATA[', '', $template);
     $template = str_replace(']]>', '', $template);
    
     //display page
     echo $template;
    }
    Thanks to me, for fixing it myself.

    Comment

    Working...