The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
I work in a maintenance shop, and we just switched over to this new maintenance management software. Our previous software have a function allowing the user to see their total time entered into the system. The new one does not, and I'd like to build a script to do just that.
Offhand I'm thinking PHP, cuz its just what I think of when I think of SQL.
My question is, whats my easiest option, since I don't want to spend too much time on this?
How is the data stored in the new software? Does it run off of a web based interface? I'd suggest sticking closely with that that software is coded in if it is web based.
However, if it is it's own standalone app, it might have it's own type of database which could be hard to get information out of. Let us know more about this application.
I'd just go with PHP then. You could put it on the same server and if more than one person needs to access this from other computers it would be as easy as having them goto a website. It might be just as easy to do with ASP, if it you're using a windows server.
You could do python and have it output to html or whatever, but honestly I don't see much of a point. :P
If you want it done quick and dirty, just use PHP. 'd recommend Python for this sort of job, but you'd then have to go through the steps of actually learning it.
Posts
However, if it is it's own standalone app, it might have it's own type of database which could be hard to get information out of. Let us know more about this application.
See how many books I've read so far in 2010
You could do python and have it output to html or whatever, but honestly I don't see much of a point. :P