• 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!

[PHP] - Query from Database on PHP Code

Gabriel Tibiano

New Member
Joined
Nov 21, 2009
Messages
420
Reaction score
4
Hey!
I need your help here, in this code above.
I want to do like the real tibia official website, but i dont know how to insert some query's from Database.
Like a: 'When premmy expired' and how to do 'GREEN BUTTON' and 'RED BUTTON' (premmy and facc respectively)

accountstatusred.gif
accountstatusgreen.gif

PHP:
<?php
$main_content = '<br/>
<div class="TableContainer">
	<table class="Table3" cellpadding="0" cellspacing="0">
		<div class="CaptionContainer">
			<div class="CaptionInnerContainer">
				<span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
				<div class="Text">Account Status</div>
				<span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
				<span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
			</div>
		</div>
		<tr>
			<td>
				<table class="Table5" cellpadding="0" cellspacing="0">
				<tbody><tr><td>
					<div class="InnerTableContainer"> 
						<table style="width:100%;"><tbody><tr><td><div class="TableShadowContainerRightTop">
							<div class="TableShadowRightTop" style="background-image:url(layouts/x/images/content/table-shadow-rt.gif);"></div></div>
							<div class="TableContentAndRightShadow" style="background-image:url(layouts/x/images/content/table-shadow-rm.gif);">  
							<div class="TableContentContainer">   
								<table class="TableContent" width="100%" style="border:1px solid #faf0d7;">
								<tbody><tr><td>
									<img class="AccountStatusImage" src="http://otland.net/images/account-status_red.gif" alt="free account"></td>
									<td width="100%" valign="middle">
									<span class="red"><font size="4"><b>Free Account</b></font></span><small><br>Your premium time expired at Aug&nbsp;22&nbsp;2010,&nbsp;21:25:38&nbsp;CEST.</small></td><td><form action="?subtopic=logoutaccount" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Logout" alt="Logout" src="layouts/x/images/buttons/_sbutton_logout.gif"></div></div></form><div style="font-size:1px;height:4px;"></div><form action="?subtopic=accountmanagement" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Manage Account" alt="Manage Account" src="layouts/x/images/buttons/_sbutton_manageaccount.gif"></div></div></form></td></tr>    </tbody></table>  </div></div><div class="TableShadowContainer">  <div class="TableBottomShadow" style="background-image:url(layouts/x/images/content/table-shadow-bm.gif);">    <div class="TableBottomLeftShadow" style="background-image:url(layouts/x/images/content/table-shadow-bl.gif);"></div>    <div class="TableBottomRightShadow" style="background-image:url(layouts/x/images/content/table-shadow-br.gif);"></div>  </div></div></td></tr>
								</tbody></table>
							</div>
						</td></tr>
					</tbody>
				</table>
			</td>
		</tr>
	</table>
</div>';
?>
 
Last edited:
You can use
Code:
$account->isPremium()
to check if player have premmy or not, for example
PHP:
if($account->isPremium()) { 
	echo 'green image link';
} else {
	echo 'red image link';
}

or

PHP:
$image = ($account->isPremium()) ? 'green image link' : 'red image link';
 
Last edited:
Yeah, i did it but i'm getting this error
Fatal error: Call to a member function isPremium() on a non-object in C:\xampp\htdocs\accountmanagement.php on line 71

I tried this function too but it's not working perfectly
PHP:
if(!$account_logged->isPremium())

PHP:
<?PHP
 $main_content .= '<div class="TableContainer">
	<table class="Table3" cellpadding="0" cellspacing="0">
		<div class="CaptionContainer">
			<div class="CaptionInnerContainer">
				<span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
				<div class="Text">Account Status</div>
				<span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
				<span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
			</div>
		</div>
		<tr>
			<td>
				<table class="Table5" cellpadding="0" cellspacing="0">
					<tbody><tr><td>
						<div class="InnerTableContainer"> 
							<table style="width:100%;">
								<tbody>
								<tr><td>
									<div class="TableShadowContainerRightTop">
										<div class="TableShadowRightTop" style="background-image:url(layouts/x/images/content/table-shadow-rt.gif);"></div>
									</div>
									<div class="TableContentAndRightShadow" style="background-image:url(layouts/x/images/content/table-shadow-rm.gif);">  
										<div class="TableContentContainer">   
											<table class="TableContent" width="100%" style="border:1px solid #faf0d7;">
												<tbody>
													<tr>
														<td>';
															if($account->isPremium()) { 
															echo '<img class="AccountStatusImage" src="http://otland.net/images/account-status_green.gif" alt="premium account">
															<span><b><font color="green">Premium Account, '.$account_logged->getPremDays().' days left</font></b>';
															} else {
																echo '<img class="AccountStatusImage" src="http://otland.net/images/account-status_red.gif" alt="free account">';
															}  
										
														$main_content .= '</td>
														<td width="100%" valign="middle"></td>
										
											
														<td>
															<form action="?subtopic=accountmanagement&action=logout" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Logout" alt="Logout" src="layouts/x/images/buttons/_sbutton_logout.gif"></div></div></form>
															<div style="font-size:1px;height:4px;"></div>
															<form action="?subtopic=accountmanagement" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Manage Account" alt="Manage Account" src="layouts/x/images/buttons/_sbutton_manageaccount.gif"></div></div></form>
														</td>
													</tr>    
												</tbody>
											</table>  
										</div>
									</div>
									<div class="TableShadowContainer">
										<div class="TableBottomShadow" style="background-image:url(layouts/x/images/content/table-shadow-bm.gif);">
										<div class="TableBottomLeftShadow" style="background-image:url(layouts/x/images/content/table-shadow-bl.gif);"></div>
										<div class="TableBottomRightShadow" style="background-image:url(layouts/x/images/content/table-shadow-br.gif);"></div>
										</div>
									</div>
								</td></tr>
								</tbody>
							</table>
						</div>
					</tbody></td></tr>
				</table>
			</td>
		</tr>
	</table>
</div>';
?>
 
Code:
<div class="TableContainer">
	<table class="Table5" cellpadding="0" cellspacing="0">
		<div class="CaptionContainer">
			<div class="CaptionInnerContainer">
				<span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
					<div class="Text">Account Status</div>
				<span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
				<span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
			</div>
		</div>
		<tr>
			<td>
				<div class="InnerTableContainer"> 
					<table style="width:100%;">
						<tr>
							<td>
								<div class="TableShadowContainerRightTop">
									<div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif);"></div>
								</div>
								<div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif);">  
									<div class="TableContentContainer">   
										<table class="TableContent" width="100%" style="border:1px solid #faf0d7;">
											<tr>
												<td>'.(!$account_logged->isPremium() ? '<img class="AccountStatusImage" src="http://img135.imageshack.us/img135/5784/accountstatusred.gif" alt="free account">' : '<img class="AccountStatusImage" src="http://img267.imageshack.us/img267/2697/accountstatusgreen.gif" alt="premium account">').'</td>
												<td width="100%" valign="middle">
													'.(!$account_logged->isPremium() ? '<span class="red"><font size="4"><b>Free Account</b></font></span>' : '<span class="green"><font size="4"><b>Premium Account</b></font></span>').'
													<small><br>Your premium time expired at Aug&nbsp;22&nbsp;2010,&nbsp;21:25:38&nbsp;CEST.</small>
												</td>
												<td>
													<form action="?subtopic=logoutaccount" method="post" style="padding:0px;margin:0px;">
														<div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)">
															<div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);">
																<div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);"></div>
																<input class="ButtonText" type="image" name="Logout" alt="Logout" src="'.$layout_name.'/images/buttons/_sbutton_logout.gif">
															</div>
														</div>
													</form>
													<div style="font-size:1px;height:4px;"></div>
													<form action="?subtopic=accountmanagement" method="post" style="padding:0px;margin:0px;">
														<div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)">
															<div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);">
																<div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);"></div>
																<input class="ButtonText" type="image" name="Manage Account" alt="Manage Account" src="'.$layout_name.'/images/buttons/_sbutton_manageaccount.gif">
															</div>
														</div>
													</form>
												</td>
											</tr>
										</table>
									</div>
								</div>
								<div class="TableShadowContainer">
									<div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif);">  
										<div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif);"></div> 
										<div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif);"></div>
									</div>
								</div>
							</td>
						</tr>
					</table>
				</div>
			</td>
		</tr>
	</table>
</div>

Don't know how to get date when premium will expire or when it expired.
 
Last edited:
But date must be a constant value, so you can't do something like that:
Code:
time() + ($account_logged->getPremDays() * 86400)


But if you do that (date will be constant), you won't be able to get time when premium expired (without changing anything)
 
getCustomField('premdays') returns a timestamp, which isn't the same as getPremDays():
Code:
    public function getPremDays()
    {
        if( !isset($this->data['premdays']) || !isset($this->data['lastday']) )
        {
            throw new E_OTS_NotLoaded();
        }

        return [B]$this->data['premdays'] [COLOR="#FF0000"]- (date("z", time()) + (365 * (date("Y", time()) - date("Y", $this->data['lastday']))) - date("z", $this->data['lastday']))[/COLOR][/B];
    }
 
Code:
getCustomField('premdays') -> Output: [COLOR="#FF0000"]50[/COLOR]

getPremDays() -> Output: [COLOR="#FF0000"]49[/COLOR]

date('M d Y, G:i:s T', $account_logged->getCustomField('lastday')) -> Output: [COLOR="#FF0000"]Oct 08 2011, 15:32:35 BST[/COLOR]

So how to do it? :p
 
Last edited:
@Acubens @Virrages @Cykotitan

I'm using this last one, the function 'isPremmy' or not is working perfectly, do you guys know and could help me how to do the function that show the day that expired the premium account? I dont even know where's this field in database..

PHP:
<a name="Account+Status"></a>
<div class="TopButtonContainer" ><div class="TopButton" ><a href="#top" >  <image style="border:0px;" src="'.$layout_name.'/images/content/back-to-top.gif" /></a></div></div>
<div class="TableContainer">
	<table class="Table5" cellpadding="0" cellspacing="0">
		<div class="CaptionContainer">
			<div class="CaptionInnerContainer">
				<span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
					<div class="Text">Account Status</div>
				<span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
				<span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
				<span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
				<span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
			</div>
		</div>
		<tr>
			<td>
				<div class="InnerTableContainer"> 
					<table style="width:100%;">
						<tr>
							<td>
								<div class="TableShadowContainerRightTop">
									<div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif);"></div>
								</div>
								<div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif);">  
									<div class="TableContentContainer">   
										<table class="TableContent" width="100%" style="border:1px solid '.$config['site']['darkborder'].';">
											<tr>
												<td>'.(!$account_logged->isPremium() ? '<img class="AccountStatusImage" src="http://img135.imageshack.us/img135/5784/accountstatusred.gif" alt="free account">' : '<img class="AccountStatusImage" src="http://img267.imageshack.us/img267/2697/accountstatusgreen.gif" alt="premium account">').'</td>
												<td width="100%" valign="middle">
													'.(!$account_logged->isPremium() ? '<span class="red"><font size="4"><b>Free Account</b></font></span>' : '<span class="green"><font size="4"><b>Premium Account</b></font></span>').'
													<small><br>Your premium time expired at Aug&nbsp;22&nbsp;2010,&nbsp;21:25:38&nbsp;CEST.</small>
												</td>
												<td>
													<form action="?subtopic=accountmanagement&action=logout" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Logout" alt="Logout" src="layouts/x/images/buttons/_sbutton_logout.gif"></div></div></form>
													<div style="font-size:1px;height:4px;"></div>
													<form action="?subtopic=accountmanagement" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Manage Account" alt="Manage Account" src="layouts/x/images/buttons/_sbutton_manageaccount.gif"></div></div></form>
												</td>
											</tr>
										</table>
									</div>
								</div>
								<div class="TableShadowContainer">
									<div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif);">  
										<div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif);"></div> 
										<div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif);"></div>
									</div>
								</div>
							</td>
						</tr>
					</table>
				</div>
			</td>
		</tr>
	</table>
</div><br>
 
Last edited:
try modifying IOLoginData::removePremium:p?

This function that show if is premmy or not, is working perfectly but i wanna know which function return the Date that expired my premium account.. Could you show me?

PHP:
<a name="Account+Status"></a>
<div class="TopButtonContainer" ><div class="TopButton" ><a href="#top" >  <image style="border:0px;" src="'.$layout_name.'/images/content/back-to-top.gif" /></a></div></div>
<div class="TableContainer">
    <table class="Table5" cellpadding="0" cellspacing="0">
        <div class="CaptionContainer">
            <div class="CaptionInnerContainer">
                <span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
                <span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
                <span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
                <span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
                    <div class="Text">Account Status</div>
                <span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"></span>
                <span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span>
                <span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
                <span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></span>
            </div>
        </div>
        <tr>
            <td>
                <div class="InnerTableContainer"> 
                    <table style="width:100%;">
                        <tr>
                            <td>
                                <div class="TableShadowContainerRightTop">
                                    <div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif);"></div>
                                </div>
                                <div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif);">  
                                    <div class="TableContentContainer">   
                                        <table class="TableContent" width="100%" style="border:1px solid '.$config['site']['darkborder'].';">
                                            <tr>
                                                <td>'.(!$account_logged->isPremium() ? '<img class="AccountStatusImage" src="http://img135.imageshack.us/img135/5784/accountstatusred.gif" alt="free account">' : '<img class="AccountStatusImage" src="http://img267.imageshack.us/img267/2697/accountstatusgreen.gif" alt="premium account">').'</td>
                                                <td width="100%" valign="middle">
                                                    '.(!$account_logged->isPremium() ? '<span class="red"><font size="4"><b>Free Account</b></font></span>' : '<span class="green"><font size="4"><b>Premium Account</b></font></span>').'
                                                    <small><br>Your premium time expired at Aug&nbsp;22&nbsp;2010,&nbsp;21:25:38&nbsp;CEST.</small>
                                                </td>
                                                <td>
                                                    <form action="?subtopic=accountmanagement&action=logout" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Logout" alt="Logout" src="layouts/x/images/buttons/_sbutton_logout.gif"></div></div></form>
                                                    <div style="font-size:1px;height:4px;"></div>
                                                    <form action="?subtopic=accountmanagement" method="post" style="padding:0px;margin:0px;"><div class="BigButton" style="background-image:url(layouts/x/images/buttons/sbutton.gif)"><div onmouseover="MouseOverBigButton(this);" onmouseout="MouseOutBigButton(this);"><div class="BigButtonOver" style="background-image:url(layouts/x/images/buttons/sbutton_over.gif);"></div><input class="ButtonText" type="image" name="Manage Account" alt="Manage Account" src="layouts/x/images/buttons/_sbutton_manageaccount.gif"></div></div></form>
                                                </td>
                                            </tr>
                                        </table>
                                    </div>
                                </div>
                                <div class="TableShadowContainer">
                                    <div class="TableBottomShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bm.gif);">  
                                        <div class="TableBottomLeftShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-bl.gif);"></div> 
                                        <div class="TableBottomRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-br.gif);"></div>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
            </td>
        </tr>
    </table>
</div><br>
 
Back
Top