Jump to content

webhead2

Members
  • Posts

    26
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

webhead2's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I wasn't closing the file, thanks. I added it in, but it didn't change the output. The script only grabs the latest entries. I suppose the question is, how do I access the site's rss in its entirety? I tested by adding the feed to google and it has over 80,000 entries...
  2. Hello, There is an RSS feed that I am trying to copy to my server. I am trying to get the entire feed, not just updates. The problem is when I copy it, it only contains the most recent stuff. I added the feed to my Google home page and it has over 80,000 entries. $remote_url = "http://www.xvideos.com/rss/rss.xml"; $handle = file_get_contents($remote_url); $f=@fopen("cache/xvideo_rss.xml","w+"); fwrite($f,$handle); Is there a way that PHP can read in the entire feed? Is there a way to download the feed and save to a file via web browser? (not view) thanks!
  3. Seems like I had a problem with my crontab firing the old version of the cron. My above code seems to be working, for now!
  4. I've tried both individually and together. It doesn't seem to pick up breaks within HTML tags.....
  5. Hello and thanks in advance. This is becoming quite the pesky problem! I am developing a script that scrapes some html from partner websites (I have no control over the formatting). The content gets inserted to a Wordpress database The problem I am having is when a carriage return is placed in the middle of a tag. Like so: <body style="color: rgb(0, 0, 0); background-color: rgb(79, 105, 59);" alink="#000099" link="#000099" vlink="#990099"> When displayed in wordpress, it actuall prints out "style="color: rgb(0, 0, 0); background-color: rgb(79, 105, 59);" alink="#000099" link="#000099" vlink="#990099">" because of the carriage return. I've tried this code to remove them: $body = str_replace(chr(13),' ',$body); $body = str_replace("\r"," ",$body); $body = str_replace("\n"," ",$body); The above does not seem to work. Thanks for looking at my problem! :chomp:
  6. here's the link: https://www.clickbank.com/feeds/marketplace_feed_v1.xml.zip I tried this: $a=0; foreach($xml->Category as $category){ echo $category->Name, $category. '<br /><br />'; foreach($xml->Category->Category as $sub_category){ echo $sub_category->Name, $sub_category. '<br /><br />'; foreach($xml->Category->Site as $site){ The loop iterated 101,000 times. I think there are approx. 45,000 sites in the feed.
  7. That was exactly the solution I was working on. The only problem with this is that only main categories are picked up. Nested categories are being omitted. The output is: Business to Business Society & Culture Home & Family Fun & Entertainment Health & Fitness Marketing & Ads Money & Employment Sports & Recreation Computing & Internet I only posted a portion of the feed, there ar subcategories such as "Education" that are being missed. Example: <Category> <Name>Society</Name> <site> ...... </site> <site> ...... </site> <Category> <Name>Culture</Name> </category> </category> I'm not worried about retaining subcategory structure, I would be happy with picking up all the categories as main. Nest another loop?
  8. One more quick problem. That loop only grabs the first category. Any idea how to grab the others?
  9. Perfect!!! Thank you so much. I've been hung up on this problem for 3 days. You and simpleXML saved the day! Xtra cowbell for you....
  10. Thanks. I added this code below my above code: foreach ($xml->Site as $site) { echo $site->Title, $site->Description, $site->Id . '<br />'; } It prints out nothing.
  11. Okay, thanks for puttin gup with me. I got frustrated because I worked on that piece of code for hours and got close, only to have to change my whole approach. I am now trying simpleXML. I have never used simpleXML, but my host has it, so I am throwing the old script out the window. Here's my current simpleXML script: $file = "incoming_data/text.xml"; $xml_data = file_get_contents($file); $xml = simplexml_load_string($xml_data, 'SimpleXMLElement', LIBXML_NOCDATA); print_r($xml); The output: SimpleXMLElement Object ( [Category] => SimpleXMLElement Object ( [Name] => Business to Business [site] => Array ( [0] => SimpleXMLElement Object ( [id] => ROBOTSTOCK [PopularityRank] => 1 [Title] => New** Day Trading Robot. [Description] => Watch The Video. Enuff' Said... [HasRecurringProducts] => false [Gravity] => 399.686 [EarnedPerSale] => 99.5119 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 99.5119 [TotalRebillAmt] => 0.0 [Referred] => 72.0 [Commission] => 75 ) [1] => SimpleXMLElement Object ( [id] => CHIAEWEN [PopularityRank] => 2 [Title] => Ewen Chia - InternetWealth.com - Secrets To Internet Wealth! [Description] => Discover The Simple 3-Step System To Massive Internet Income Every Single Day! Make 75% Commissions Daily - Get *free* Affiliate Training Worth $497.00 - Sign Up At www.InternetWealth.com/wealth - Go Now! [HasRecurringProducts] => true [Gravity] => 186.786 [EarnedPerSale] => 60.3449 [PercentPerSale] => 71.0 [TotalEarningsPerSale] => 60.3449 [TotalRebillAmt] => 0.0 [Referred] => 68.0 [Commission] => 75 ) [2] => SimpleXMLElement Object ( [id] => BRYXEN15 [PopularityRank] => 3 [Title] => PPC Web Spy - New Generation Of Keyword Research! [Description] => Uncover All Of Your Competitions Adwords Keywords While You Browse Google In Real-time... And Much More! Huge Affiliate Payout! Recent Affiliate Made $5,000+ With A Single Promotion! See Proof & Get Affiliate Tools: Http://www.ppcwebspy.com/affiliate.php. [HasRecurringProducts] => true [Gravity] => 224.706 [EarnedPerSale] => 51.0641 [PercentPerSale] => 65.0 [TotalEarningsPerSale] => 51.0641 [TotalRebillAmt] => 0.0 [Referred] => 86.0 [Commission] => 65 ) [3] => SimpleXMLElement Object ( [id] => SURVEY272 [PopularityRank] => 4 [Title] => Converting At 1 In 14 Hops $1.37 Epc To Affiliates - Must See!!! [Description] => Sales Copy By Top Copywriter In The World. Best Converting Survey Site. Promote This Site And Earn More Guaranteed! Makemoneytakingsurveys.org/affiliates.php. [HasRecurringProducts] => false [Gravity] => 331.27 [EarnedPerSale] => 18.3945 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 18.3945 [TotalRebillAmt] => 0.0 [Referred] => 95.0 [Commission] => 75 ) [4] => SimpleXMLElement Object ( [id] => REGEASY [PopularityRank] => 5 [Title] => Registry Easy - #1 Converting Registry Cleaner & System Optimizer. [Description] => Stunning Conversions With Extremely Low Refund Rate. Dedicated Affiliate Support. Extraordinary Customer Service. Any Kind Of Conversion Tracking & Multiple Landing Pages. Talk To Us! Http://www.cheesesoft.com/affiliates/registry-easy/. [HasRecurringProducts] => false [Gravity] => 148.194 [EarnedPerSale] => 30.625 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 30.625 [TotalRebillAmt] => 0.0 [Referred] => 71.0 [Commission] => 75 ) [5] => SimpleXMLElement Object ( [id] => SALEHOO [PopularityRank] => 6 [Title] => SaleHoo Wholesale Sources / eBay(R) Directory...#1 Affiliate Program. [Description] => Extremely High Number Of Niche Keywords That You Can Promote This With (see Our Affiliate Resources For Keywords And More: www.salehoo.com/affiliates). Very High Conversions, Particularly In Ppc. Earn Up To $70/sale. Crosspromo With Skyhighauctions.com. [HasRecurringProducts] => true [Gravity] => 150.659 [EarnedPerSale] => 48.6465 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 48.6629 [TotalRebillAmt] => 42.26 [Referred] => 72.0 [Commission] => 75 ) [6] => SimpleXMLElement Object ( [id] => PAIDETC [PopularityRank] => 7 [Title] => Paid Surveys Etc.. #1 Survey Site. [Description] => Insane Conversions With New Sales Copy... Must See. ## Http://www.paidsurveysetc.com/affiliates.php. [HasRecurringProducts] => false [Gravity] => 173.448 [EarnedPerSale] => 21.3305 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 21.3305 [TotalRebillAmt] => 0.0 [Referred] => 94.0 [Commission] => 75 ) [7] => SimpleXMLElement Object ( [id] => DJKSHADOW [PopularityRank] => 8 [Title] => Google Shadow - $20,434 In A Day With Google. [Description] => Over 5,000 Sales And Counting... New Software Pillages Google For $127,763 Per Month. [HasRecurringProducts] => true [Gravity] => 192.943 [EarnedPerSale] => 27.7634 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 52.3259 [TotalRebillAmt] => 24.5626 [Referred] => 92.0 [Commission] => 50 ) [8] => SimpleXMLElement Object ( [id] => LEGITONL [PopularityRank] => 9 [Title] => Legit Online Jobs. [Description] => Brand New Site Design! 24/7 Live Support Turns Visitors Into Paying Customers. All Visitors Get Responses To Their Queries In Real-Time. Take Advantage. Earn Some Real Cash! [HasRecurringProducts] => false [Gravity] => 143.947 [EarnedPerSale] => 34.5393 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 34.5393 [TotalRebillAmt] => 0.0 [Referred] => 82.0 [Commission] => 75 ) [9] => SimpleXMLElement Object ( [id] => ENERGY4GRE [PopularityRank] => 10 [Title] => Energy4Green - Build Your Own Wind And Solar Power System! [Description] => High Conversion, Few Refunds, Due To Huge Demand, Home-Made Renewable Solar And Wind Energy Site, Very High Converting Product (Up To 3.8%), Professional Sales Letter And Design! [HasRecurringProducts] => false [Gravity] => 68.2676 [EarnedPerSale] => 33.0237 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 33.0237 [TotalRebillAmt] => 0.0 [Referred] => 91.0 [Commission] => 75 ) [10] => SimpleXMLElement Object ( [id] => FREEGOOGLE [PopularityRank] => 11 [Title] => Get Google Ads Free! :: New Secret!! :: Newbie Affiliate Made $109,620. [Description] => In Just 1st 60 Days! :: Proof Of How Powerful At Affiliate Page! :: Makes $40-$67 Per Sale! ::*$1000-$3000 Affiliate Bonuses* :: Contains *Magic Code* When Added To Any Site Makes Google Pay-Per-Click Ads Costs Go To Zero! :: See CB Ad At Right For Proof! [HasRecurringProducts] => false [Gravity] => 151.532 [EarnedPerSale] => 45.8529 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 45.8529 [TotalRebillAmt] => 0.0 [Referred] => 75.0 [Commission] => 75 ) [11] => SimpleXMLElement Object ( [id] => PAGESTYLE [PopularityRank] => 12 [Title] => Perfect Optimizer - Conversion Ranges From 3.74% To 23.6%! [Description] => Double Bonuses Up To $12 + Weekly Payment. 75% + $2-$7 Bonuses + 1 To 1 Assists. Get Bonuses When Sales Over 5! 24*7*365 Live Affilites Service. Conv Tracking, Keywords, Lp Etc. Proven Best Converting Program! PerfectOptimizer.com/Affiliates.html. [HasRecurringProducts] => false [Gravity] => 64.8631 [EarnedPerSale] => 33.9513 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 33.9513 [TotalRebillAmt] => 0.0 [Referred] => 74.0 [Commission] => 75 ) [12] => SimpleXMLElement Object ( [id] => REGDEF [PopularityRank] => 13 [Title] => RegDefense - Top Registry Cleaner Offer - Recurring Plans! [Description] => RegDefense Is The Only Registry Cleaning Software That Provides You With The Tools Necessary To Become A Successful Money-Making Affiliate. We Offer Conversion Tracking, Keywords, Ad Copy, & More. Affiliates Visit: Http://regdefense.com/affiliates/. [HasRecurringProducts] => true [Gravity] => 45.2779 [EarnedPerSale] => 26.4059 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 26.4059 [TotalRebillAmt] => 0.0 [Referred] => 78.0 [Commission] => 75 ) [13] => SimpleXMLElement Object ( [id] => COPROPHET [PopularityRank] => 14 [Title] => Affiliate Prophet. [Description] => Revolutionary Marketing Tracking System. Upsell Converting At 43%. Sign Up At Http://www.affiliate-prophet.com/affiliates For Promotional Materials. [HasRecurringProducts] => true [Gravity] => 97.1927 [EarnedPerSale] => 50.1709 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 50.1709 [TotalRebillAmt] => 0.0 [Referred] => 96.0 [Commission] => 50 ) [14] => SimpleXMLElement Object ( [id] => GAMERBOTS [PopularityRank] => 15 [Title] => Xbox 360 Repair Guide - New Promotional Videos For Easy YouTube Sales. [Description] => New Automated Google & Yahoo Tracking. We Average A 1/5 Conversion Rate. Let Our Affiliate Page Be Your Blueprint To Commissions! This Product Sells Itself. Don't Double Your Stocks W/ Forex, Triple Your Money By Selling This Guide! Our Guide Converts! [HasRecurringProducts] => false [Gravity] => 117.683 [EarnedPerSale] => 17.4023 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 17.4023 [TotalRebillAmt] => 0.0 [Referred] => 86.0 [Commission] => 75 ) [15] => SimpleXMLElement Object ( [id] => ADCASH1 [PopularityRank] => 16 [Title] => The AdWords Manifesto. [Description] => AdWords Secret Strategies From A 6 Figures A Month AdWords Millionaire! [HasRecurringProducts] => false [Gravity] => 75.6185 [EarnedPerSale] => 45.1954 [PercentPerSale] => 60.0 [TotalEarningsPerSale] => 45.1954 [TotalRebillAmt] => 0.0 [Referred] => 71.0 [Commission] => 60 ) [16] => SimpleXMLElement Object ( [id] => MALREMOVAL [PopularityRank] => 17 [Title] => MalwareRemovalBot Malware Removal Tool. [Description] => Designed Specificlly For Malware Related Keywords! [HasRecurringProducts] => false [Gravity] => 23.1352 [EarnedPerSale] => 33.6488 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 33.6488 [TotalRebillAmt] => 0.0 [Referred] => 84.0 [Commission] => 75 ) [17] => SimpleXMLElement Object ( [id] => 1FREE [PopularityRank] => 18 [Title] => Multiple Streams Of Income. We Pay On Backend Sales! [Description] => Just Updated For Feb 2009! Sales Copy Converts Like Crazy. Low Refunds. 24/7 Phone Support. Make Money Online And Work From Home! [HasRecurringProducts] => false [Gravity] => 85.3941 [EarnedPerSale] => 18.5991 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 18.5991 [TotalRebillAmt] => 0.0 [Referred] => 95.0 [Commission] => 75 ) [18] => SimpleXMLElement Object ( [id] => AFFSTOCKS [PopularityRank] => 19 [Title] => DoublingStocks - Stock Trading Robot. [Description] => Read The Sales Page. Enough Said... Http://doublingstocks.com/affiliates.php. [HasRecurringProducts] => true [Gravity] => 73.9357 [EarnedPerSale] => 39.2183 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 39.2183 [TotalRebillAmt] => 365.0 [Referred] => 82.0 [Commission] => 75 ) [19] => SimpleXMLElement Object ( [id] => ATOMICBLOG [PopularityRank] => 20 [Title] => Atomic Blogging 3.0. [Description] => Over 1,200 Sold In 1 Day! Best Selling Blogging System - 75% Comm With Upsell & New Monthly Backend Converting 5% - 25%. Latest Updated 2009 Release With New High Converting Copy ! Go To www.AtomicBlogging.com/Signup/ To Join In The Blogging Madness. [HasRecurringProducts] => true [Gravity] => 85.2153 [EarnedPerSale] => 23.2937 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 23.2937 [TotalRebillAmt] => 0.0 [Referred] => 82.0 [Commission] => 75 ) [20] => SimpleXMLElement Object ( [id] => BRYXEN1 [PopularityRank] => 21 [Title] => Seo Elite: New Seo Software! [Description] => The Grand Daddy Of All Seo Software! Get A Top 5 Google Ranking In Under 30 Days! $101 Affiliate Payout! [HasRecurringProducts] => true [Gravity] => 71.4064 [EarnedPerSale] => 60.7715 [PercentPerSale] => 65.0 [TotalEarningsPerSale] => 82.6308 [TotalRebillAmt] => 48.4837 [Referred] => 59.0 [Commission] => 65 ) [21] => SimpleXMLElement Object ( [id] => BLOGAP [PopularityRank] => 22 [Title] => Membersip Dominators - N E W. [Description] => Just Launched Monday 2nd March ::: Already Over 1,000 Units Sold Converting At 5.8% And Upsell Converting At 46% ::: Promote Now Before The Doors Close On Friday! [HasRecurringProducts] => true [Gravity] => 89.9313 [EarnedPerSale] => 22.0561 [PercentPerSale] => 60.0 [TotalEarningsPerSale] => 22.0561 [TotalRebillAmt] => 0.0 [Referred] => 72.0 [Commission] => 60 ) [22] => SimpleXMLElement Object ( [id] => IMEBOOK [PopularityRank] => 23 [Title] => Perfect Uninstaller - #1 Converting Uninstaller. [Description] => Earn 29+ Per Sale, 75% Comm And Bonuses! The Only One Uninstaller Product On CB! Any Kind Of Conversion Tracking & Multiple Landing Pages. Talk To Us! Http://www.cheesesoft.com/affiliates/perfect-uninstaller/. [HasRecurringProducts] => false [Gravity] => 36.5383 [EarnedPerSale] => 29.2757 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 29.2757 [TotalRebillAmt] => 0.0 [Referred] => 64.0 [Commission] => 75 ) [23] => SimpleXMLElement Object ( [id] => BRYXEN4 [PopularityRank] => 24 [Title] => Keyword Elite: New Keyword Software. [Description] => Go Here For Tons Of Affiliate Tools: Http://www.keywordelite.com/affiliate/ Create 1000s Of Adsense Keywords, Dominate Adwords. [HasRecurringProducts] => false [Gravity] => 49.0418 [EarnedPerSale] => 76.613 [PercentPerSale] => 60.0 [TotalEarningsPerSale] => 76.613 [TotalRebillAmt] => 0.0 [Referred] => 81.0 [Commission] => 60 ) [24] => SimpleXMLElement Object ( [id] => SMALLBIZ11 [PopularityRank] => 25 [Title] => Brand New - Small Business Traffic Secrets: $102 To $150 Payouts. [Description] => New Course That Teaches Small Biz Owners 11 Specific Strategies For Getting Massive Website Traffic. Internet Marketing Techniques From 2 Guys That Do Over 8 Million Web Visitors/month. Http://www.smallbusinessinternetsecrets.net/affiliates.html For Tips. [HasRecurringProducts] => false [Gravity] => 44.1925 [EarnedPerSale] => 103.05 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 103.05 [TotalRebillAmt] => 0.0 [Referred] => 77.0 [Commission] => 75 ) [25] => SimpleXMLElement Object ( [id] => SPYWAREBOT [PopularityRank] => 26 [Title] => Ultra Hot* SpywareStop: #1 AntiSpyware. [Description] => We Offer 24/7/365 Live Support, Remote Assistance, Active Protection, Check-out Assistance, Live FAQs And More To Ensure Your Traffic Converts Day And Night Without Interuptions - Affiliates Make 120,000/Month With Ppc! Now With Msn/Goog/Yhoo Tracking! [HasRecurringProducts] => false [Gravity] => 38.8428 [EarnedPerSale] => 26.8315 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 26.8315 [TotalRebillAmt] => 0.0 [Referred] => 60.0 [Commission] => 75 ) [26] => SimpleXMLElement Object ( [id] => GUNLOCATOR [PopularityRank] => 27 [Title] => Get Your Federal Firearms License 2009. [Description] => New 2009 Ffl Kit To Help You Get Your Federal Firearms License And Buy Guns Wholesale. We Are A Licensed Dealer. New 2009 Updates. [HasRecurringProducts] => false [Gravity] => 58.5313 [EarnedPerSale] => 14.9518 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 14.9518 [TotalRebillAmt] => 0.0 [Referred] => 85.0 [Commission] => 50 ) [27] => SimpleXMLElement Object ( [id] => WEBVISTA2 [PopularityRank] => 28 [Title] => Super Affiliate Handbook. [Description] => Start Your Own Home-Based Affiliate Marketing Business With Super Affiliate Rosalind Gardners Expert Guidance! Topics Include Blogging, Market Research, Affiliate Programs, Web Design, Problem Avoidance And So Much More! Updated Completely For 2008. [HasRecurringProducts] => false [Gravity] => 74.3142 [EarnedPerSale] => 25.1449 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 25.1449 [TotalRebillAmt] => 0.0 [Referred] => 72.0 [Commission] => 50 ) [28] => SimpleXMLElement Object ( [id] => AFFNAIRE [PopularityRank] => 29 [Title] => How To Make Money Promoting Other People's Products. [Description] => 12-Month, Week-By-Week Training Program With Your Own Affiliate 'Blank Check' Privileges. [HasRecurringProducts] => true [Gravity] => 67.9029 [EarnedPerSale] => 11.9514 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 11.9514 [TotalRebillAmt] => 0.0 [Referred] => 72.0 [Commission] => 50 ) [29] => SimpleXMLElement Object ( [id] => DRIVERCHK [PopularityRank] => 30 [Title] => Driver Checker - 1# Converting Drivers Update Product. [Description] => New Driver Update Application: 75% Commissions! Great Free Scan Workflow! Any Kind Of Conversion Tracking & Multiple Landing Pages. Talk To Us! Http://www.cheesesoft.com/affiliates/driver-checker/. [HasRecurringProducts] => false [Gravity] => 26.0614 [EarnedPerSale] => 24.7593 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 24.7593 [TotalRebillAmt] => 0.0 [Referred] => 69.0 [Commission] => 75 ) [30] => SimpleXMLElement Object ( [id] => ROBOFOREX [PopularityRank] => 31 [Title] => Forex Software Automatically Advices You When To Trade. [Description] => This Software Automatically Gives Advices You When To Trade Forex So You Profit. [HasRecurringProducts] => false [Gravity] => 30.5218 [EarnedPerSale] => 34.4339 [PercentPerSale] => 70.0 [TotalEarningsPerSale] => 34.4339 [TotalRebillAmt] => 0.0 [Referred] => 96.0 [Commission] => 70 ) [31] => SimpleXMLElement Object ( [id] => MSNCODE [PopularityRank] => 32 [Title] => The Ultimate Search Engine Loophole - Totally Legit, Pays 75%. [Description] => Veteran SEO Expert Reveals An Actual Loophole For Getting Unbelievable Organic Rankings. Video Proof On Site - Converts Like Crazy. We Pay 75% On $67, See Http://www.RankingLoophole.com/affiliates.php For Tons Of Resources. (And Yes, It Works). [HasRecurringProducts] => false [Gravity] => 49.698 [EarnedPerSale] => 45.5875 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 45.5875 [TotalRebillAmt] => 0.0 [Referred] => 87.0 [Commission] => 75 ) [32] => SimpleXMLElement Object ( [id] => 1CLICKSITE [PopularityRank] => 33 [Title] => Cash Making Power Sites! 75%/Sale! -- Make $68.63 Upfront $24.92/Mth! [Description] => Best Recurring Billing Product On Cb! :: This Site Sells 5 Websites-In-1 Pack! :: Each Site Has Free Video & Forced Squeeze Page! :: Database-Drive Makes Leads 'Stick' To Affiliates Forever! :: Affs Still Get 75% Even Years From Now! :: Check Out Aff-Page. [HasRecurringProducts] => true [Gravity] => 32.2386 [EarnedPerSale] => 33.988 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 33.988 [TotalRebillAmt] => 176.83 [Referred] => 83.0 [Commission] => 75 ) [33] => SimpleXMLElement Object ( [id] => SECRETSBK [PopularityRank] => 34 [Title] => Secrets Book. [Description] => Secrets Book - You Have The Right To Make A Change! [HasRecurringProducts] => false [Gravity] => 29.6325 [EarnedPerSale] => 33.8974 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 33.8974 [TotalRebillAmt] => 0.0 [Referred] => 81.0 [Commission] => 75 ) [34] => SimpleXMLElement Object ( [id] => PIPSLEADER [PopularityRank] => 35 [Title] => Forex Pips Leader. [Description] => Leader In Forex Trading-Front-end 87$-Upsell 17$-Crazy Commission-Crazily Converting . More Details Here: Http://pipsleader.com/affiliate.html. [HasRecurringProducts] => false [Gravity] => 24.3995 [EarnedPerSale] => 30.9943 [PercentPerSale] => 55.0 [TotalEarningsPerSale] => 30.9943 [TotalRebillAmt] => 0.0 [Referred] => 87.0 [Commission] => 55 ) [35] => SimpleXMLElement Object ( [id] => BRYXEN7 [PopularityRank] => 36 [Title] => New Article Submitter Software - Submit To 668 Directories! [Description] => Go To: Http://articlesubmitter.imwishlist.com/affiliates/ For Tons Of Killer Affiliate Tools. Crazy Conversion Rates! Brand Spanking New Article Submission Software Lets You Instantly Submit Your Articles To Over 660 High Quality Articles Directories! [HasRecurringProducts] => true [Gravity] => 30.1858 [EarnedPerSale] => 73.2761 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 84.0812 [TotalRebillAmt] => 31.825 [Referred] => 49.0 [Commission] => 75 ) [36] => SimpleXMLElement Object ( [id] => FAPWINNER1 [PopularityRank] => 37 [Title] => FAP-WINNER.com- Amazing Affiliate Profit: Up To 180 Per Sale! [Description] => Fap-winner.com Offers Fapts Trading Expert Advisor For Forex Trading, Hedging Expert Advisor And Premium Customer And Technical Support Services Via A Membership Fee For Forex Auto Pilot Users. Lowest Refund Rate Ever! [HasRecurringProducts] => true [Gravity] => 41.961 [EarnedPerSale] => 51.5371 [PercentPerSale] => 29.0 [TotalEarningsPerSale] => 64.3652 [TotalRebillAmt] => 16.255 [Referred] => 40.0 [Commission] => 30 ) [37] => SimpleXMLElement Object ( [id] => YSWEBSITE [PopularityRank] => 38 [Title] => Your Software Website. [Description] => How Would You Like To Own Your Very Own Profit Pulling Software Website That Can Make You Sales On Complete Autopilot 24 Hours A Day, 7 Days A Week. [HasRecurringProducts] => false [Gravity] => 46.1479 [EarnedPerSale] => 28.1975 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 28.1975 [TotalRebillAmt] => 0.0 [Referred] => 39.0 [Commission] => 50 ) [38] => SimpleXMLElement Object ( [id] => LAZYMRKETR [PopularityRank] => 39 [Title] => Confessions Of A Lazy Super-Affiliate (Pays 75%). [Description] => Look At The Unique Salesletter To See Why This Converts At 1:20 For Top Affiliates. Cut/paste Tools & Marketing Tips At www.TheLazyMarketer.com/affiliates.html. [HasRecurringProducts] => false [Gravity] => 52.8358 [EarnedPerSale] => 19.9705 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 19.9705 [TotalRebillAmt] => 0.0 [Referred] => 72.0 [Commission] => 75 ) [39] => SimpleXMLElement Object ( [id] => 1236659 [PopularityRank] => 40 [Title] => Easy Web Video. [Description] => Number 1 Web Video Software With 3 New Upsells As Of 8/25/08. Easy Sale For You! Click To Watch The Videos And Click The Order Link To See The Upsells... [HasRecurringProducts] => false [Gravity] => 19.9927 [EarnedPerSale] => 79.0019 [PercentPerSale] => 65.0 [TotalEarningsPerSale] => 79.0019 [TotalRebillAmt] => 0.0 [Referred] => 68.0 [Commission] => 65 ) [40] => SimpleXMLElement Object ( [id] => SURVEYS976 [PopularityRank] => 41 [Title] => SurveyBank - Earn $33.75 Per Sale - Hot New Affiliate Program. [Description] => Affiliates Earn 75% Commission - Insane Conversion Rate. Best Converting Survey Site. Sales Page Written By Top Copywriter. Very Low Return Rate. You Can Easily Earn An Insane Amount Of Money With Our Affiliate Program. Forget The Rest, Try The Best. [HasRecurringProducts] => false [Gravity] => 9.46863 [EarnedPerSale] => 33.7988 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 33.7988 [TotalRebillAmt] => 0.0 [Referred] => 88.0 [Commission] => 75 ) [41] => SimpleXMLElement Object ( [id] => RMRS1 [PopularityRank] => 42 [Title] => Ready Made Review Sites - Hot Affiliate Review Sites! [Description] => Pays 50% Recurring Commissions. Promo Tools Available Now At www.readymadereviewsites.com/promotools.php. [HasRecurringProducts] => true [Gravity] => 72.8553 [EarnedPerSale] => 12.3999 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 35.5357 [TotalRebillAmt] => 23.1359 [Referred] => 83.0 [Commission] => 50 ) [42] => SimpleXMLElement Object ( [id] => SEMILLONAR [PopularityRank] => 43 [Title] => Secretos Para Hacer Millones En Internet. [Description] => Gana Más De $25 Dólares Por Cada Venta. Nuestro Nuevo Sitio Web Vende En Grande, Diseño Y Carta De Venta Nuevos. Nuestros Afiliados Estan Ganando Cientos De Dólares Diarios. Para Afiliarte Gratis Visita: www.semillonario.com/afiliados.htm - No1 En Ventas. [HasRecurringProducts] => false [Gravity] => 29.4067 [EarnedPerSale] => 23.2803 [PercentPerSale] => 60.0 [TotalEarningsPerSale] => 23.2803 [TotalRebillAmt] => 0.0 [Referred] => 78.0 [Commission] => 60 ) [43] => SimpleXMLElement Object ( [id] => AUTOPILOTP [PopularityRank] => 44 [Title] => Ewen Chias Autopilot Profits! [Description] => Autopilot Profits System - Huge Conversion! 70% Commissions! [HasRecurringProducts] => false [Gravity] => 47.5279 [EarnedPerSale] => 18.9242 [PercentPerSale] => 59.0 [TotalEarningsPerSale] => 18.9242 [TotalRebillAmt] => 0.0 [Referred] => 53.0 [Commission] => 70 ) [44] => SimpleXMLElement Object ( [id] => REGWINNER [PopularityRank] => 45 [Title] => Registry Winner - High Converting Registry Cleaner. [Description] => Award Winner Software! #1 $$ Maker With Free Promotional Material, Google/Yahoo/MSN And CB Conversion Track. We Offer 75% Commission Per Sale + Extra Bonuses! [HasRecurringProducts] => false [Gravity] => 9.97758 [EarnedPerSale] => 28.3936 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 28.3936 [TotalRebillAmt] => 0.0 [Referred] => 84.0 [Commission] => 75 ) [45] => SimpleXMLElement Object ( [id] => HTM1LINDEX [PopularityRank] => 46 [Title] => Web Tools Now SEO Tools. [Description] => 75% Commissions- Sales Copy By Top Copywriter So It Converts Like Crazy...Promote This Site And Earn More Guaranteed! [HasRecurringProducts] => true [Gravity] => 16.1772 [EarnedPerSale] => 27.0625 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 27.0625 [TotalRebillAmt] => 0.0 [Referred] => 66.0 [Commission] => 75 ) [46] => SimpleXMLElement Object ( [id] => MCALLEN2 [PopularityRank] => 47 [Title] => HyperVRE -- Viral Adsense Software. [Description] => A Fellow Member Just Made Over $12,000 In One Month With AdSense! Get Others To Promote Your Affiliate Links On Over 2,046,000 Webpages Across The Internet! 50% Affiliate Payout! [HasRecurringProducts] => true [Gravity] => 33.3294 [EarnedPerSale] => 46.704 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 46.8133 [TotalRebillAmt] => 10.0795 [Referred] => 64.0 [Commission] => 50 ) [47] => SimpleXMLElement Object ( [id] => REGSWEEP [PopularityRank] => 48 [Title] => RegSWEEP #1 Converting Registry Cleaner. MS Vista Certified. [Description] => New*** RegSWEEP Converts 2x Better Than Any Other Registry Cleaner! Dont Sell Junk Scanners. Sell The From The Company Microsoft Signs Off On. Now With Msn/Goog/Yhoo Tracking! [HasRecurringProducts] => false [Gravity] => 20.4694 [EarnedPerSale] => 26.4321 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 26.4321 [TotalRebillAmt] => 0.0 [Referred] => 42.0 [Commission] => 75 ) [48] => SimpleXMLElement Object ( [id] => STUFFCASH [PopularityRank] => 49 [Title] => Ewen Chia Working From Home: How To Get Rich From Home Online! [Description] => Secret *Instant Income System* Included! Unlimited $150+ Commissions Over And Over Again! [HasRecurringProducts] => false [Gravity] => 35.3746 [EarnedPerSale] => 19.2011 [PercentPerSale] => 70.0 [TotalEarningsPerSale] => 19.2011 [TotalRebillAmt] => 0.0 [Referred] => 50.0 [Commission] => 70 ) [49] => SimpleXMLElement Object ( [id] => ANNIHILATE [PopularityRank] => 50 [Title] => Google Annihilation. [Description] => Brand New Competition Crushing Software ::: Re-launches Thursday 29th Jan ::: Lock Those Recurring Commissions In Then:::. [HasRecurringProducts] => true [Gravity] => 34.872 [EarnedPerSale] => 11.9714 [PercentPerSale] => 58.0 [TotalEarningsPerSale] => 33.1736 [TotalRebillAmt] => 21.2021 [Referred] => 79.0 [Commission] => 60 ) [50] => SimpleXMLElement Object ( [id] => CHAMP83 [PopularityRank] => 51 [Title] => Clubaffiliate.net 75% Very High Conversions Low Refunds. [Description] => IPod . Psp . Zune . IPhone . Movies . Music . Mp3 . Tv Shows . Flash Sites Great Conversions. www.clubaffiliate.net. [HasRecurringProducts] => false [Gravity] => 5.11169 [EarnedPerSale] => 30.1111 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 30.1111 [TotalRebillAmt] => 0.0 [Referred] => 99.0 [Commission] => 75 ) [51] => SimpleXMLElement Object ( [id] => ENERGYOPT [PopularityRank] => 52 [Title] => Free Energy Options - Wind & Solar Power - Renewable Energy. [Description] => Create Your Own Wind And/or Solar Power Generator At Home. Paying Out 75%. Huge $54 Commission With Backend Sale. Is This The Next Water 4 Gas? Best Affiliate Section In The Niche At www.FreeEnergyOptions.com/affiliates. [HasRecurringProducts] => false [Gravity] => 17.8548 [EarnedPerSale] => 32.4947 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 32.4947 [TotalRebillAmt] => 0.0 [Referred] => 94.0 [Commission] => 75 ) [52] => SimpleXMLElement Object ( [id] => HEALTHEBIZ [PopularityRank] => 53 [Title] => You Make $45.73 On The Front End! :: & $66.55 On The Back End! ::. [Description] => Instant Seller! ::: Site Converts Rapidly! ::: Customers Get Powerful Website! ::: You Make $45.73 (75%) On The Front End & $66.55 (75%) On The Back End! ::: Best-Selling Affiliate Tools Free Only At: Http://www.HealthBizInABox.com/affiliates.php. [HasRecurringProducts] => true [Gravity] => 30.1439 [EarnedPerSale] => 33.9615 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 77.757 [TotalRebillAmt] => 46.7913 [Referred] => 38.0 [Commission] => 75 ) [53] => SimpleXMLElement Object ( [id] => CBDMANAGER [PopularityRank] => 54 [Title] => DLGuard - File Download Protection. [Description] => Protect Your Time And Your Money: Stop Download Thieves And Build Customer Lists. Every Serious Seller Needs This! [HasRecurringProducts] => false [Gravity] => 30.8054 [EarnedPerSale] => 55.783 [PercentPerSale] => 50.0 [TotalEarningsPerSale] => 55.783 [TotalRebillAmt] => 0.0 [Referred] => 59.0 [Commission] => 50 ) [54] => SimpleXMLElement Object ( [id] => VIDEOWW [PopularityRank] => 55 [Title] => Video Web Wizard 2.0 Software - Put Video On Any Website In 10 Minutes. [Description] => Introducing VideoWebWizard 2.0... The Easy Way For You To Start Using And Profiting With Online Video. Great Conversion Rate - $45.73 Per Sale! Affiliate Contest 7/29-8/8. [HasRecurringProducts] => false [Gravity] => 22.0587 [EarnedPerSale] => 42.8421 [PercentPerSale] => 75.0 [TotalEarningsPerSale] => 42.8421 [TotalRebillAmt] => 0.0 [Referred] => 54.0 [Commission] => 75 ) [55] => SimpleXMLElement Object ( [id] => SECRETAFF [PopularityRank] => 56 [Title] => Ewen Chias Secret Affiliate Weapon. [Description] => Highest Conversion. Make Commissions On 3 Levels! [HasRecurringProducts] => false [Gravity] => .... What I need to do now is traverse the array of data, then build a single MySQL statement for each <site></site>. I also need to retain the "name" value which holds a group of sites in a category. I can build the SQL, etc.... but I HAVE NO IDEA HOW TO TRAVERSE THIS ARRAY. I can't even get single values to print at this point.
  12. Why does it really matter what I use? I've got something that pretty much works. I don't intend to use simple xml as all hosts have not upgraded yet. Really man, thanks for your help but I don't think you're helping very much. I just need someone with a trained eye to look at my code to see what is throwing my array off. It's not a parser issue.
  13. The values are incorrect after the first array. That was the whole point of my question. Look at the value of description. It is the same for the first and second array. It's not that way in the XML.
  14. Thanks for your help! I am parsing a large XML file: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE Catalog SYSTEM "marketplace_feed_v1.dtd"> <Catalog> <Category> <Name>Business to Business</Name> <Site> <Id>ROBOTSTOCK</Id> <PopularityRank>1</PopularityRank> <Title><![CDATA[New** Day Trading Robot.]]></Title> <Description><![CDATA[Watch The Video. Enuff' Said...]]></Description> <HasRecurringProducts>false</HasRecurringProducts> <Gravity>399.686</Gravity> <EarnedPerSale>99.5119</EarnedPerSale> <PercentPerSale>75.0</PercentPerSale> <TotalEarningsPerSale>99.5119</TotalEarningsPerSale> <TotalRebillAmt>0.0</TotalRebillAmt> <Referred>72.0</Referred> <Commission>75</Commission> </Site> <Site> <Id>CHIAEWEN</Id> <PopularityRank>2</PopularityRank> <Title><![CDATA[Ewen Chia - InternetWealth.com - Secrets To Internet Wealth!]]></Title> <Description><![CDATA[Discover The Simple 3-Step System To Massive Internet Income Every Single Day! Make 75% Commissions Daily - Get *free* Affiliate Training Worth $497.00 - Sign Up At www.InternetWealth.com/wealth - Go Now!]]></Description> <HasRecurringProducts>true</HasRecurringProducts> <Gravity>186.786</Gravity> <EarnedPerSale>60.3449</EarnedPerSale> <PercentPerSale>71.0</PercentPerSale> <TotalEarningsPerSale>60.3449</TotalEarningsPerSale> <TotalRebillAmt>0.0</TotalRebillAmt> <Referred>68.0</Referred> <Commission>75</Commission> </Site> <Site> <Id>BRYXEN15</Id> <PopularityRank>3</PopularityRank> <Title><![CDATA[PPC Web Spy - New Generation Of Keyword Research!]]></Title> <Description><![CDATA[uncover All Of Your Competitions Adwords Keywords While You Browse Google In Real-time... And Much More! Huge Affiliate Payout! Recent Affiliate Made $5,000+ With A Single Promotion! See Proof & Get Affiliate Tools: Http://www.ppcwebspy.com/affiliate.php.]]></Description> <HasRecurringProducts>true</HasRecurringProducts> <Gravity>224.706</Gravity> <EarnedPerSale>51.0641</EarnedPerSale> <PercentPerSale>65.0</PercentPerSale> <TotalEarningsPerSale>51.0641</TotalEarningsPerSale> <TotalRebillAmt>0.0</TotalRebillAmt> <Referred>86.0</Referred> <Commission>65</Commission> </Site> <Site> <Id>SURVEY272</Id> <PopularityRank>4</PopularityRank> <Title><![CDATA[Converting At 1 In 14 Hops $1.37 Epc To Affiliates - Must See!!!]]></Title> <Description><![CDATA[sales Copy By Top Copywriter In The World. Best Converting Survey Site. Promote This Site And Earn More Guaranteed! Makemoneytakingsurveys.org/affiliates.php.]]></Description> <HasRecurringProducts>false</HasRecurringProducts> <Gravity>331.27</Gravity> <EarnedPerSale>18.3945</EarnedPerSale> <PercentPerSale>75.0</PercentPerSale> <TotalEarningsPerSale>18.3945</TotalEarningsPerSale> <TotalRebillAmt>0.0</TotalRebillAmt> <Referred>95.0</Referred> <Commission>75</Commission> </Site> <Site> <Id>REGEASY</Id> <PopularityRank>5</PopularityRank> <Title><![CDATA[Registry Easy - #1 Converting Registry Cleaner & System Optimizer.]]></Title> <Description><![CDATA[stunning Conversions With Extremely Low Refund Rate. Dedicated Affiliate Support. Extraordinary Customer Service. Any Kind Of Conversion Tracking & Multiple Landing Pages. Talk To Us! Http://www.cheesesoft.com/affiliates/registry-easy/.]]></Description> <HasRecurringProducts>false</HasRecurringProducts> <Gravity>148.194</Gravity> <EarnedPerSale>30.625</EarnedPerSale> <PercentPerSale>75.0</PercentPerSale> <TotalEarningsPerSale>30.625</TotalEarningsPerSale> <TotalRebillAmt>0.0</TotalRebillAmt> <Referred>71.0</Referred> <Commission>75</Commission> </Site> <Site> <Id>SALEHOO</Id> <PopularityRank>6</PopularityRank> <Title><![CDATA[saleHoo Wholesale Sources / eBay(R) Directory...#1 Affiliate Program.]]></Title> <Description><![CDATA[Extremely High Number Of Niche Keywords That You Can Promote This With (see Our Affiliate Resources For Keywords And More: www.salehoo.com/affiliates). Very High Conversions, Particularly In Ppc. Earn Up To $70/sale. Crosspromo With Skyhighauctions.com.]]></Description> <HasRecurringProducts>true</HasRecurringProducts> <Gravity>150.659</Gravity> <EarnedPerSale>48.6465</EarnedPerSale> <PercentPerSale>75.0</PercentPerSale> <TotalEarningsPerSale>48.6629</TotalEarningsPerSale> <TotalRebillAmt>42.26</TotalRebillAmt> <Referred>72.0</Referred> <Commission>75</Commission> </Site> <Site> <Id>PAIDETC</Id> <PopularityRank>7</PopularityRank> <Title><![CDATA[Paid Surveys Etc.. #1 Survey Site.]]></Title> <Description><![CDATA[insane Conversions With New Sales Copy... Must See. ## Http://www.paidsurveysetc.com/affiliates.php.]]></Description> <HasRecurringProducts>false</HasRecurringProducts> <Gravity>173.448</Gravity> <EarnedPerSale>21.3305</EarnedPerSale> <PercentPerSale>75.0</PercentPerSale> <TotalEarningsPerSale>21.3305</TotalEarningsPerSale> <TotalRebillAmt>0.0</TotalRebillAmt> <Referred>94.0</Referred> <Commission>75</Commission> </Site> <Site> </Category> </Catalog> I am inserting this into a database. I am printing to screen right now for testing. $file = "incoming_data/marketplace_feed_v1.xml"; $feed = array(); $sql = array(); $key = ""; $info = ""; function startElement($xml_parser, $attrs ) { global $feed; } function endElement($xml_parser, $name) { global $feed, $info; $key = $name; $feed[$key] = $info; $info = ""; } function charData($xml_parser, $data ) { global $info; $info .= $data; } $xml_parser = xml_parser_create(); $a = 1; xml_set_element_handler($xml_parser, "startElement", "endElement"); xml_set_character_data_handler($xml_parser, "charData" ); $fp = fopen($file, "r"); while ($data = fread($fp, 490)) { print_r($feed); echo "<br><br>"; !xml_parse($xml_parser, $data, feof($fp)); $sql= "INSERT INTO `$dbpref` ( `"; $j=0; $i=count($feed); foreach( $feed as $assoc_index => $value ) { $j++; $sql.= strtolower($assoc_index); if($i>$j) $sql.= "` , `"; if($i<=$j) {$sql.= "` ) VALUES ('";} } $h=0; foreach( $feed as $assoc_index => $value ) { $h++; // check if category not needed now cb feed was off $sql.= utf8_decode(trim(addslashes($value))); if($i-1>$h) $sql.= "', '"; if($i<=$h) $sql.= "','')"; } //echo "<br>$sql"; $sql_result = mysql_query($sql,$conn) or die ("Couldn't execute insert query! $sql"); $a=$a+1; } Now here's the problem. $feed contains: Array ( [NAME] => Business to Business [iD] => ROBOTSTOCK [POPULARITYRANK] => 1 [TITLE] => New** Day Trading Robot. [DESCRIPTION] => Watch The Video. Enuff' Said... [HASRECURRINGPRODUCTS] => false [GRAVITY] => 399.686 [EARNEDPERSALE] => 99.5119 [PERCENTPERSALE] => 75.0 ) Array ( [NAME] => Business to Business [iD] => CHIAEWEN [POPULARITYRANK] => 2 [TITLE] => Ewen Chia - InternetWealth.com - Secrets To Internet Wealth! [DESCRIPTION] => Watch The Video. Enuff' Said... [HASRECURRINGPRODUCTS] => false [GRAVITY] => 399.686 [EARNEDPERSALE] => 99.5119 [PERCENTPERSALE] => 75.0 [TOTALEARNINGSPERSALE] => 99.5119 [TOTALREBILLAMT] => 0.0 [REFERRED] => 72.0 [COMMISSION] => 75 [sITE] => ) Array ( [NAME] => Business to Business [iD] => BRYXEN15 [POPULARITYRANK] => 3 [TITLE] => Ewen Chia - InternetWealth.com - Secrets To Internet Wealth! [DESCRIPTION] => Discover The Simple 3-Step System To Massive Internet Income Every Single Day! Make 75% Commissions Daily - Get *free* Affiliate Training Worth $497.00 - Sign Up At www.InternetWealth.com/wealth - Go Now! [HASRECURRINGPRODUCTS] => true [GRAVITY] => 186.786 [EARNEDPERSALE] => 60.3449 [PERCENTPERSALE] => 71.0 [TOTALEARNINGSPERSALE] => 60.3449 [TOTALREBILLAMT] => 0.0 [REFERRED] => 68.0 [COMMISSION] => 75 [sITE] => ) Array ( [NAME] => Business to Business [iD] => BRYXEN15 [POPULARITYRANK] => 3 [TITLE] => PPC Web Spy - New Generation Of Keyword Research! [DESCRIPTION] => Uncover All Of Your Competitions Adwords Keywords While You Browse Google In Real-time... And Much More! Huge Affiliate Payout! Recent Affiliate Made $5,000+ With A Single Promotion! See Proof & Get Affiliate Tools: Http://www.ppcwebspy.com/affiliate.php. [HASRECURRINGPRODUCTS] => true [GRAVITY] => 224.706 [EARNEDPERSALE] => 51.0641 [PERCENTPERSALE] => 65.0 [TOTALEARNINGSPERSALE] => 60.3449 [TOTALREBILLAMT] => 0.0 [REFERRED] => 68.0 [COMMISSION] => 75 [sITE] => ) Notice that the title, description and other values go awry after the first array. What can I do to solve this??
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.