problem using arrow keys in bash shell

hello everybody,
as many, I have a problem with a script...

I wrote a shell script in which I want to read a variable value. the problem is that I can't use the arrow keys.
Here is the script I use :

#!/bin/bash
stty erase ^H

read foune

echo "$foune"
exit 0;

the problem is that if the user ( or me..) wants to correct what he wrote, he can't use the arrow keys ( i had the same problem with backspace but i fixed it with stty erase ^H).
Instead it print "value^[[D" (the ^[[D is when i use left arrow key)

I don't know if I have been clear enough, but if someone understand my problem...:o
Thanks

The "stty erase ^H" when entered correctly causes the backspace to do backspaces instead of the del key, this does not affect the behavior of the left arrow key.

yeah, i know that it affect only the backspace. My problem is that I can't use the left and right arrow keys.
At first, when I typed on backspace that was echoing "^H" instead of deleting the char.
Now i fixed these problem with the "stty erase..".
And so now I'm searching for a way to do the same thing with the arrow keys... and it seems pretty hard!