This is the first time I've ever tried this so please bear with me. I created this with some html code:

What I need this to do is when the person hits submit, it sends the text in each field to a file located on the web host. I need it to look something like this:

Here's the code I have (not sure if it will help):

What I need this to do is when the person hits submit, it sends the text in each field to a file located on the web host. I need it to look something like this:

Here's the code I have (not sure if it will help):
Code:
<div id="welcom_pan"> <h2><span>submit your</span>VIDEO</h2><br> <p><form> YouTube Link to Video <br><input type="text" name="youtubelink" size ="50"/><br /><br /> Do you accept the rules (below)? <br><input type="radio" name="yes" value="yes" /> Yes <input type="radio" name="no" value="no" /> No<br /><br /> What's happening in the video? </form> <form method="post"> <textarea name="comments" cols="40" rows="5"></textarea><br> </form><br> <input type="submit" value="Submit" /> </p> </div>
Comment