code:<?php $input = 'Spokes'; $output = ''; for($i = 0; $i < strlen($input); $i++) { $output .= '<'.substr($input, $i, 1).'>'; } echo $output; ?>