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

New player name - createcharacter.php

therrax

Member
Joined
Jul 12, 2012
Messages
262
Solutions
1
Reaction score
11
Hi Otland.
Information:
TFS 1.0 Znote AAC 1.5

Why players on my Ot can create name with "_"
For example I can create nick:
Kon_ikoza

I have this:
Code:
if (!preg_match("/^[a-zA-Z_ ]+$/", $_POST['name'])) {
                $errors[] = '<tr class="striped" style="width: 100%;" cellspacing="1" cellpadding="4">
            <td colspan="2" style="color: red; text-align: center;">Wrong name!</td></tr>';
 
@Ninja How to set correct time in website? My last login is +1h faster than real time. It's in header? (My time zone is Warsaw +1)
Code:
<?php
$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;
?>
?
 
Hi Otland.
Information:
TFS 1.0 Znote AAC 1.5

Why players on my Ot can create name with "_"
For example I can create nick:
Kon_ikoza

I have this:
Code:
if (!preg_match("/^[a-zA-Z_ ]+$/", $_POST['name'])) {
                $errors[] = '<tr class="striped" style="width: 100%;" cellspacing="1" cellpadding="4">
            <td colspan="2" style="color: red; text-align: center;">Wrong name!</td></tr>';
http://php.net/manual/es/function.preg-match.php#105924 if you want more information
 
Back
Top