<?php
if( !touch( "allCache.txt" ) ) { echo 'You must create a file named allCache.txt and chmod it to 664 or 666'; die(); }
include( "clsParseXML.php" );
$xmlparse = &new ParseXML;
$xml = $xmlparse->GetXMLTree( "http://promo.neondollars.com/xml/allonline/v2.php?wm=8secure8&campaign=313&program=revshare&filter=1,2,3,4,5,6,7,8,9" );
$xml2=$xml["MODEL_LIST"][0]["MODEL"];
$cache = fopen ( "allCache.txt", "w" );
fwrite( $cache, serialize($xml2) );
fclose( $cache );
?>