// Earlybird price, do NOT use '$' $early_price = "199.00"; // Regular price, do NOT use '$' $regular_price = "225.00"; // This is the date the price changes // from earlybird to regular // FORMAT: MM/DD/YYYY $change_date = "09/10/2003"; /******************************/ // Don't edit these two lines $change_time = strtotime($change_date) + 86400; // convert above date to UNIX timEDTamp $current_time = time(); // current server time, UNIX timEDTamp /******************************/ // END PHP ?>
|