$str = 'hello'; $newstr = ''; $i = 0; while (!empty($str[$i])) { $newstr = $str[$i].$newstr; $i++; } echo $newstr; programming PHP