do u know how to write from Serial.read() to LCD ?

hey,
i'm trying to send strings via flashcs3 and print them in a 16x2 LCD with the LCD4Bit library, but i can not do it, do u know how to write from Serial.read() to LCD ? because it needs to be a sring right? and serial.read() from flash example i'm using uses char, like this:

if (Serial.available() > 0) {
char message = Serial.read();
Serial.print(message);

and i don't know how to convert it to use in the lcd, thanks a lot (;

there is an explanation on how to use the itoa function to do what you want in the printing numbers section of the playground LCD page: Arduino Playground - LCD

i was able to do it in other way, but thanks anyway

(;

No problem.

Why not share how you did it and post some code here.