Hello!
Well I've found a trick to get the table numbers using a request on the table and extracting the name like this :...
(this is to manage special patches)
but I think there should be something more simple way...
If you have a better solution with a direct variable (that i did not found)... you're welcome.
Well I've found a trick to get the table numbers using a request on the table and extracting the name like this :...
(this is to manage special patches)
Code: Select all
$toto = self::getCollectionFromDb( "show tables");
$tata = array_keys($toto['player']);
$titi = explode("_",$tata[0]);
$tablenumber= $titi[4];
If you have a better solution with a direct variable (that i did not found)... you're welcome.