About reading the text off another document, what I mean is something like this. Suppose there is a web page made by someone else that I don't have access to edit, but I can read it of course. And the page looks like this:
<HTML><HEAD></HEAD><BODY>
Today's weather: rain
</BODY></HTML>
So I want my program to download this page (the content of which changes because the weather changes every day) and read the words "Today's weather: rain", and then parse it up, or whatever, and use the info in my page. That's what I mean.
About saving the data on the server, is there some way to do that only by using JavaScript, and not CGI? And can you read the data again?
The program I'm working on now, actually I wrote it already in
Java, and I've been using it. But now I want to have other people use it too, but I don't think they will all want to download the JRE, so I want to use JavaScript, because virtually everyone has it already on their internet browsers.
Well, thank you for the helpful advice.