<?php $output = ''; for ($i= 1; $i <= 100; $i++) { if ($i % 15 == 0) { $output .= ", ApaBole"; } elseif ($i % 3 == 0) { $output .= ", Apa"; } elseif ($i % 5 == 0) { $output .= ", Bole"; } else { $output .= ', '.$i; } } echo ltrim($output, ', ');
You have javascript disabled. You will not be able to edit any code.