I am hosting a website(for testing purposes) using Apache 2.4.3 on a Windows 7 machine.My Goals:1. Html page/section with title textfield, text textarea, and submit button. You would enter a title, the text/notes you need in the textfield, then press the submit button to have it store the text in the textarea, as a .txt file on the server called .txt.[*]Html with list of all txt files OR textfield for entering in title, then submit button to send the title of the requested .txt file to the server, which would then load it up on the page.Here is what I have so far: (feel free to make changes if something doesn't look right)\[code\]<!DOCTYPE HTML><html><head> <title>Insert Title</title> <meta http-equiv="Content-Type" content="Text/HTML; charset=UTF-8"/></head><body> <form method="post" action="save.INSERT_FILETYPE" name="textfile" enctype="multipart/form-data"> <input type="text" name="title"><br/> <textarea rows="20" cols="100" id="text" name="text"></textarea><br/> <input type="submit" name="submit" value="http://stackoverflow.com/questions/12734344/Submit Text to Server"></form> <br/><hr style="width: 100%; height: 4px;"><br/> <form method="post" action="open.INSERT_FILETYPE" name="textfile" enctype="multipart/form-data"> <input type="text" name="title"><br/> <input type="submit" name="submit" value="http://stackoverflow.com/questions/12734344/Submit Txt File Request"></form> <br/> <div>Opened text file displays here or goes on another page</div></body></html>\[/code\]I plan on using a server side language/script, but ANYTHING that gets the job done is fine. I already tried looking into using some ASP/jScript/PHP, but have had some trouble implementing it into my server. (ie: getting the modules loaded and telling the server to parse for )I know this may be an easy fix, but I have been looking all over and trying many different things to try to get this to work.I appreciate any help that you can provide,Thanks,Jake