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

Gesior AAC!

noobwars

NoobWars.hopto.org Hoster
Joined
Apr 2, 2013
Messages
153
Reaction score
2
Could anyone help me solve this problem?, Im getting this error at the top of the page when im logged into account in gesior aac

Warning: date() expects parameter 2 to be long, string given in C:\xampp\htdocs\accountmanagement.php on line 112

Here is line 112 in my accountmanagement.php
Code:
<tr style="background-color:'.$config['site']['darkborder'].';" ><td class="LabelV">Created:</td><td>'.date("j F Y, G:i:s", $account_created).'</td></tr>
 
Code:
<tr> style="background-color:'.$config['site']['darkborder'].';" ><td class="LabelV">Created:</td><td>'.date("j F Y, G:i:s", $account_created).'</td></tr>

Try it, idk really
 
Try with
PHP:
'.date("j F Y, G:i:s", strtotime($account_created)).'
or
PHP:
'.date("j F Y, G:i:s", (int)$account_created).'
 
Thanks Ninja! REP+, Btw could you edit the text, for the header ?, The thread you moved to "Small Art", none is helping me ;/
 
Back
Top