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

id rosnaco zamiast random

Martin93

~WebDesign
Joined
Nov 11, 2008
Messages
194
Reaction score
0
Location
Poland
jak w gesiorze zrobic, zeby konta mialy id o 1 wiekszy niz poprzedni 1,2,3,4 itp a nie losowe?
 
OTS_Account.php
Code:
 public function create($min = 1, $max = 9999999, $name = null)
    {
        // generates random account number
        $random = rand($min, $max);
        $number = $random;
        $exist = array();
 
Wydaje mi się że gdy pominiesz ustawienie argumentu id system sam nada mu wartość wyższą niż ostatnio, od tego jest przecież auto_increment =).​
 
Back
Top