I need to print out number in this format xxx,xxx,xxx how can i write? thanks
Use number_format. It has a number of optional parameters, but for what you want to do you don't need any of them.
$numeric_variable = 1000000; $formatted = number_format($numeric_variable);