Need a little assitance.
Need a recursive function that will return ascii values of a string characters.
Say the user enters: hi there
The function would have to return the valud for 'h' then be called again from itself and return the value of 'h'+'i' and then call itself again, and keep on doing this untill the end of the string.

I'm not sure how i would go about doing that.
Any suggestions?

Thanx,
D!m