Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- $Day = date("l");
- $Hour = date("G");
- if($Day != 'Sunday' && $Hour >= 6 && $Hour <= 18){
- $Field1 = "http://cwrdistribution.com/feeds/productdownload.php?id=B1&version=2&format=tab&mans=";
- $Field2 = "&fields=sku,mfg,ti,reb,rebd,rebs,rebe&time=1357014000";
- $MFG = array(
- array("ACR", 100001),
- array("Blue Sea", 100008),
- array("FLIR Systems", 100149),
- array("Furuno", 100025),
- array("Garmin", 100026),
- array("KVH", 100041),
- array("Lowrance", 100045),
- array("Spot", 100122),
- array("Standard Horizon", 100088),
- array("Vesper", 100410));
- for($i = 0; $i <= count($MFG) - 1; $i++){
- $MFGfile = $MFG[$i][0] . '.tab';
- $handle = fopen($MFGfile, 'w');
- fwrite($handle, file_get_contents($Field1 . $MFG[$i][1] . $Field2));
- fclose($handle);
- }}
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement