Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 12-31-2009, 01:50 AM   #1
Waddymelon
So Fucking Banned
 
Industry Role:
Join Date: Oct 2009
Location: The Whitehouse
Posts: 17,349
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 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 12-31-2009, 04:28 AM   #2
Waddymelon
So Fucking Banned
 
Industry Role:
Join Date: Oct 2009
Location: The Whitehouse
Posts: 17,349
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.
Waddymelon is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.