Codice PHP:
<?php
$stringa 
"ciao1 ciao2 ciao3";
$arr explode(" "$stringa);

for (
$i 1$i sizeof($arr); $i++) {
    echo 
$arr[$i];
}
?>