• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua Auction Website images not showing up.

brendan2

Sensation black
Joined
Feb 19, 2009
Messages
507
Reaction score
1
I dont no what to do.
I want images what am i supose to replace to get it to work
PHP:
<?PHP
$auctions = $SQL->query('SELECT `auction_system`.`player`, `auction_system`.`id`, `auction_system`.`item_name`, `auction_system`.`item_id`, `auction_system`.`count`, `auction_system`.`cost`, `auction_system`.`date`, `players`.`name` FROM `auction_system`, `players` WHERE `players`.`id` = `auction_system`.`player` ORDER BY `auction_system`.`id` DESC')->fetchAll();
$players = 0;
       
    $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=white><b>Instruction<b></TD></TR><TR BGCOLOR='.$config['site']['darkborder'].'><TD><center><h2>Commands</h2><b>!offer add, itemName, itemPrice, itemCount</b><br /><small>example: !offer add, plate armor, 500, 1</small><br /><br /><B>!offer buy, AuctionID</b><br /><small>example: !offer buy, 1943</small><br /><br /><b>!offer remove, AuctionID</b><br /><small>example: !offer remove, 1943</small></center></TR></TD></TABLE><br />';
    if(empty($auctions))
    {
        $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=white><b>Auctions</b></td></TR><TR BGCOLOR='.$config['site']['darkborder'].'><TD>Currently is no one active Auction.</TD></TR></TABLE>';
        $main_content .= '<br /><p align="right"><small>System created by <a href="http://otland.net/members/vDk/">vDk</a>.</small></p>';
    }
    else
    {
    foreach($auctions as $auction) {
        $players++;
            if(is_int($players / 2))
                $bgcolor = $config['site']['lightborder'];
            else
                $bgcolor = $config['site']['darkborder'];
        $cost = round($auction['cost']/1000, 2);
        $content .= '<TR BGCOLOR='.$bgcolor.'><TD><center>'.$auction['id'].'</center></TD><TD><center><img src="http://otland.net/'.$auction['item_id'].'.gif"/></center></TD><TD><center>'.$auction['item_name'].'</center></TD><TD><center><a href="?subtopic=characters&name='.urlencode($auction['name']).'">'.$auction['name'].'</a></center></TD><TD><center>'.$auction['count'].'</center></TD><TD><center>'.$cost.'k<br /><small>'.$auction['cost'].'gp</small></center></TD><TD><center>!offer buy, '.$auction['id'].'</center></TR>';
    }
    
    $main_content .= '<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=4 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=white><b><center>ID</center></b></TD><TD class="white"><b><center>#</center></b></TD><TD class="white"><b><center>Item Name</center></b></TD><TD class="white"><b><center>Player</center></b></TD><TD class="white"><b><center>Count</center></b></TD><TD class="white"><b><center>Cost</center></b></td><TD class="white"><b><center>Buy</center></b></td></TR>'.$content.'</TABLE>';
    $main_content .= '<br /><p align="right"><small>System created by <a href="http://otland.net/members/vDk/">vDk</a>.</small></p>';
}
    ?>
 
And paste to your folder in acc maker images ...www/images/items

wheres account maker images? i cant find it in xampp and what do you mean by www/images? if its a link a link to what?
 
And remember, the images must be .GIF, unless you change line 20 to:

PNG: (recommended or stay with GIF)
PHP:
$content .= '<TR BGCOLOR='.$bgcolor.'><TD><center>'.$auction['id'].'</center></TD><TD><center><img src="http://otland.net/'.$auction['item_id'].'.png"/></center></TD><TD><center>'.$auction['item_name'].'</center></TD><TD><center><a href="?subtopic=characters&name='.urlencode($auction['name']).'">'.$auction['name'].'</a></center></TD><TD><center>'.$auction['count'].'</center></TD><TD><center>'.$cost.'k<br /><small>'.$auction['cost'].'gp</small></center></TD><TD><center>!offer buy, '.$auction['id'].'</center></TR>';
 
I still cant figure it out.
I cant find any account maker folder anywhere in my htdocs.
I want to no where to put images at.
I put the images in htdocs images folder.
and put
img src="C:\xampp\htdocs\images\items'.$auction['item_id'].'.gif"
It shows up nuthing when i look at it on website. Theres no broken image icon just nuthing there.

Its annoying cause I dont understand why its not working and the explanations are not telling me enough.
www/images/items? Whats the www for? is it a link to something? Whats the link? I dont have a www ? is www the website layout in htdocs? Wheres account manager folder located in htdocs did search found nuthing no folder or anything I cant seem to find it.
I have images folder. Is that what you mean?
 
Last edited:
i still cant figure it out.
I cant find any account maker folder anywhere in my htdocs.
I want to no where to put images at.
I put the images in htdocs images folder.
And put

it shows up nuthing when i look at it on website. Theres no broken image icon just nuthing there.

Its annoying cause i dont understand why its not working and the explanations are not telling me enough.
Www/images/items? Whats the www for? Is it a link to something? Whats the link? I dont have a www ? Is www the website layout in htdocs? Wheres account manager folder located in htdocs did search found nuthing no folder or anything i cant seem to find it.
I have images folder. Is that what you mean?


read :
hey.
Change line
Code:
<img src="c:\xampp\htdocs\images\items'.$auction['item_id'].'.gif"
to :
Code:
<img src="/images/items/'
 
Back
Top