so i'm trying to build an experiment database where I work on a machien that's going to be a dedicated server solely for this purpose. My problem is, i'm getting tired of sshing into the machine each day and having 20+ emacs windows open trying to organize all this code. Is there some sort of IDE I could use which could open remote files, edit them, and immediately upload them whenever I save? Also, what would be the best website for quick answers and descriptions to common php questions (i.e. right now i'm looking for a simple way to display the contects of a directory in a dropdown menu...)? I've just started getting into php and mysql, so I need as much help as I can get, and googling has been iffy in finding the exact info I need. Any help would be appreciated.
****EDIT****
Maybe someone can help me with a more specific problem i'm tackling in php right now..
I have a text file forematted in fortran90 namelist format, which looks something like this:
§1
var1=int
var2='string'
var3=bool
/
§2
var1=...
/
etc. I want to try parsing the file so that each &.../ section can have it's own object named whatever is after the &, containing all the variables listed. The problem is, the file can have different amounts of strings in any order, so I can't assume any static form. Is there a way I can set up a templated class or hashtable to dynamically make variable and set them to bools/ints/strings accordingly? I have a working version of this implimentation that i can snag some tokenizer ideas from, but it's in IDL, so it doesn't play too nice with web access. Anyone know what kinda path I can take on this?
****EDIT****
Maybe someone can help me with a more specific problem i'm tackling in php right now..
I have a text file forematted in fortran90 namelist format, which looks something like this:
§1
var1=int
var2='string'
var3=bool
/
§2
var1=...
/
etc. I want to try parsing the file so that each &.../ section can have it's own object named whatever is after the &, containing all the variables listed. The problem is, the file can have different amounts of strings in any order, so I can't assume any static form. Is there a way I can set up a templated class or hashtable to dynamically make variable and set them to bools/ints/strings accordingly? I have a working version of this implimentation that i can snag some tokenizer ideas from, but it's in IDL, so it doesn't play too nice with web access. Anyone know what kinda path I can take on this?