<?php
define("MYCURRENCY", "USD", true); //cuurency from the file
define("SHIPCOST", "5.50", true); //contant ship cost
define("PASS", " ", true);
define("LOGIN", " ", true);
define("WEB_KEY", "", true); //web api key
define("COUNTRY", "228", true); //228- Poland
define("AUCTIONS_DIR", " ", true); //ftp account
class Logs{
function Logs(){}
function log($info){
$handle = fopen("log.txt","a+");
$date = date("F j, Y, g:i a");
$string = $date." ".$info."\n\r";
fwrite($handle,$string);
fclose($handle);
}
}
?>