Posted by jenkinsp on 01/05/07 05:32
Thats perfect,
thank you :)
paul
Skeleton Man wrote:
> Correction to my code:
>
> >for ($i=1;$i<=strlen($myString);$i++)
>
> That should be:
>
> for ($i=0;$i<strlen($myString);$i++)
>
> (I didn't realise string indexes started at 1 in C and not 0 like PHP)
>
> Chris
[Back to original message]
|