Codice PHP:
<?
$testo
="pippo";
$num=strlen($testo);
for (
$a=0;$a<$num;$a++)
echo 
$testo[$a]."
"
;
?>