$string = "hey there!";

$out = '';
 for ($i=0; $i<count($string); $i++) {
   $out .= strtoupper($string[$i]) . "\n"; // or <br> if output is to
browser
 }
echo $out;

"Richard Baskett" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Strings are arrays, so you can print out a string by doing something like
> this:
>
> $string = "hey there!";
>
> for ($i=0; $i<count($string); $i++) {
>   echo strtoupper($string[$i]);
> }
>
> That's about all there is to it! :)  Use the strtoupper() function if you
> mean to have everything uppercase like in your example.
>
> Rick
>
> > I was looking to take a string like Dan and return it like
> > D
> > A
> > N
> >
> > is it the str function that does that
> >
> > =====
> > Dan McCullough
> > -------------------------------------------------------------------
> > "Theres no such thing as a problem unless the servers are on fire!"
> > h: 603.444.9808
> > w: McCullough Family
> > w: At Work
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Make a great connection at Yahoo! Personals.
> > http://personals.yahoo.com
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> >
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to