Blame view

general_price.php 195 Bytes
42868d70   andryeyev   Создал GIT
1
2
3
4
5
6
7
8
  <?php
  
  $homepage = file_get_contents('http://extremstyle.ua/price.php');
  $fp = fopen('/home/extremstyle/www/extremstyle.ua/price/price.xml', 'w');
  fwrite($fp, $homepage);
  fclose($fp);
  print 1;
  ?>