PHP Code:
<?
$Value = '1234';
$Print_Value = '';
for ($i = 0; $i < strlen($Value); $i++){
if ($i != (strlen($Value) - 1))
$Print_Value .= $Value{$i} . '.';
else
$Print_Value .= $Value{$i};
}
echo $Print_Value;
?>
I believe is something like that, you are waiting for..
just feedback if don't..
