Pulling data from a text file for a webpage.

Scarpozzi

Lifer
Jun 13, 2000
26,391
1,780
126
I've got a VB script that I run to generate a text file. What's the best method for bringing that data to the web. I'd like to find some way to make a call to each line of text since I've spaced the values out 1 per line rather than doing CSVs. Any advice?
 

MrChad

Lifer
Aug 22, 2001
13,507
3
81
A server-side scripting language like ASP or PHP could do this easily, and your webpage would be updated in realtime as your text file is updated.
 

Scarpozzi

Lifer
Jun 13, 2000
26,391
1,780
126
My problem there is that I don't have PHP or ASP enabled on the Apache server I'm using due to security and compatibility reasons. (it's Apache for Netware) I was hoping there was an XHTML call or something that could do this, but I haven't had to do much web stuff lately so I'm way out of practice.