• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

which program to use?

jamesave

Golden Member
I have a program that will generate gif charts (reporting) into a folder/directory. The gifs are named with "_" delimited, for easy identification purpose. The users need to see the charts of the same fields within a web page, or printing it in a page. What language/program should I use? CGI, Java? Can you give suggestion?
 
Java would be overkill and slow.

I'd use ColdFusion, ASP, PHP or something similar and read the contents of a folder and compare the name against a regular expression and display it.
 
Originally posted by: WobbleWobble
Java would be overkill and slow.

I'd use ColdFusion, ASP, PHP or something similar and read the contents of a folder and compare the name against a regular expression and display it.

wtf did you get that idea? Do you speak from experience?

Having said that, I would also vote for php. It's the simplest to set up so unless you have significant experience in another area that would be the place to start.
 
np 🙂

jamesave, I just had another thought. Do you require these pages to update in real time? I'm just thinking that, if the charts don't get updated very often and you don't have an appropriate web serving environment set up, it may be quicker to use something to generate a static html file which you then save and use as your web page. It's not as elegant but it could be much quicker and then you could use any tools you're familiar with instead of learning one that is suited to web apps.
 
i thought about that, as the reports are set once a week.. I can create a perl script to do the html files. but I'd like to learn a new language, and so far the points go to php.
Thanks! 🙂
 
Back
Top