>I have the poam_select catagory in the html
>page set already but like i said it just puts in the name of the txt file i
>have selected not the actual text from the file.
>Any suggestions on different ways to do this.
Why don't you simply open and read the file with a file handle:
open TEXT, "mytext.txt";
while (<TEXT>) {
$text = "$text.$_"
}
print $text
or something like this
Klaus
----------------------------------------------------------------
http://www.eye.de - Dienste rund um Fotografie und Internet
----------------------------------------------------------------
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]