I have to display numbers from DB in thousand dotted.
E.g. 10000 20000000 3300
I have to display this: 10.000 20.000.000 3.300
There is a command in PHP or MySQL or HTML to display or transform in DB?
You want the number_format function :
php.net/manual/function.number-format.php