dbconnect();
/*
Below we create a cursor named companyproj that selects all of the projects belonging to a
company that is generated from viewcomp.html. In the loop down below we output the results
in an unordered list format. The user can then click on the project name to view it.
*/
companyproj = database.cursor("SELECT * FROM Project WHERE companyname = '" + request.companyname + "'")
Projects for write(request.companyname).