
ADMIN PAGE
Instant View of Submitted Forms
Name | Reimbursment Requested | Date Submitted |
/**********************************
Displays the contents of the data.txt file
***********************************/
project.lock();
var myfile = new File(datadir());
if (myfile.open("r"))
{
while (!myfile.eof())
{
write(myfile.readln());
}
flush();
myfile.close()
}
project.unlock();