Contact: aviboots(AT)netvision.net.il
39,926 questions
51,859 answers
573 users
function increaseby($ch, $n) { $i = 0; while ($i < $n) { $ch++; $i++; } return $ch; } $ch = 'a'; $ch = increaseby($ch, 5); echo $ch; /* run: f */