Your instructions say
Quote:
Open file: root/store.php
**********************************
--------
Find:
--------
if($showimg=="Y") {
--------
Add BEFORE it:
--------
if ($aw[action]=='lottery') {
$lok=$DB_site->query_first("SELECT * FROM storelottery WHERE lotnumber='1'");
$lotname=$lok[lotname];
$startdate=vbdate($dateformat,$lok[startdate]);
$enddate=vbdate($dateformat,$lok[enddate]);
$lottery="<br><b>Start Date:</b> $startdate <br><b>End Date:</b> $enddate<br><b>Money in jackpot:</b> $lok[jackpot]";
} else {
$lotname="";
$lottery="";
}
|
but in the new store.php , it doesn't find if($showimg=="Y") {
so where does that go ?