I want to add an value to string 14 times with a separate comma ",".
$result = 0; for($i = 0; $i <= 14; $i++) { $result += $i . ","; }