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

Solved About web site!

tuppan

New Member
Joined
Jun 27, 2008
Messages
43
Reaction score
2
hello, i have this script in php

PHP:
$main_content .= '<TR BGCOLOR="'.$bgcolor.'"><TD WIDTH=10%>Vip Status:</TD>';
$vip = $SQL->query('SELECT * FROM players WHERE vip_time = '.$id.' AND `key` = '.$config['site']['show_vip_storage'].';')->fetch();
if($vip == 0) {
$main_content .= '<TD><span class="red"><B>VIP</B></TD></TR>';
}
else
{
$main_content .= '<TD><span class="green"><B>NOT VIP</B></TD></TR>';
}

this is supposed to show if the player are vip or not, but the original php code is to show a storage value, but my vip system is not in Storage values, is in account > vip_time , i use this script and it show VIP for who has a vip but show to dont have vip =( can some1 help me! really needed! tyxx

REP++ for you!:peace:
 
Last edited:
Back
Top