!!!!! Posted January 25, 2007 Share Posted January 25, 2007 I recently made a Form on my website ( http://thewwra.com/jobapplication.php ). It is for me to know who wants to work for my website. I would like to know the best way for me to store the Information sent after somebody presses the Submit button. Thanks! The stuff I need to know:1. The Best way to store the sent info.2. How to do that... What command ( a little bit of starter (or finished lol) code would be great but not needed, Google is my friend :D) 3. Thanks !the current code of this page = [code]<form name="input" action="mmmmm.php"method="get"><textarea cols="40" rows="5" name="why">Why do you want to join TheWWRA? Enter answer in this box.</textarea><br><br>Do you know how to write script in HTML?<br><input type="radio" name="html" value="yes"> Yes, I know HTML.<br><input type="radio" name="html" value="no"> No, I do not know how to write in HTML.<br><br>Are you active online?:<br><input type="radio" name="active" value="yes"> Yes, I am very active.<br><input type="radio" name="active" value="regularly"> I am not on 24/7, but I am online regularly.<br><input type="radio" name="active" value="no"> I am not very active.<br><br>What is your E-Mail Address {We will need it to send you a message stating that you have been given your desired TheWWRA job.}:<br><input type="text" name="email" value="E-Mail Goes Here"><br><br>The last Question, what job would you like in TheWWRA? <br>NOTE #1: To be a Page Editor you must have knowledge of HTML.<br>NOTE #2: To be a Moderator you must have a post count of atleast 50 on the TheWWRA Forums. If you DO have a post count of atleast 50, an Administrator, me or somebody else, will review all of your posts on the Forums and decided whether or not you have earned the right to be a Moderator.<br>NOTE #3: "Quest Info Obtainers" are in-game workers. They go around doing Quests and making Guides on how to do them. All Credit for that Quests info will be given to the person who obtained that info. If 1 of the Quest Info Obtainers misses a little bit of Information in that Quest then another Info Obtainer can send me the missing Info through the "Report-New-Info" system. <br>Note #4: "Skill Info Obtainers do the same thing as Quest Info Obtainers except... Well... With Skills.<br>Last Note: Full Pledged Workers collect all Monster Info, Item Info, and anything else they can find. Like Mini-Quests or Mini-Games, etc.<br><select name="dropdown"><option value="editor">Page Editor</option><option value="moderator">Forum Moderator</option><option value="quest">Quest Info Obtainer</option><option value="skill">Skill Info Obtainer</option><option value="fulltime">Full Pledged Worker</option><br></select><br><br><input type="submit" value="Submit Info"></form>[/code]~Off Topic Question~Also, even though Internet Explorer does NOT support a TON of CSS... would it be good for me to learn it? I currently have a pretty good book I could read and put the info I learn on my Website. Link to comment https://forums.phpfreaks.com/topic/35732-just-a-stupid-question/ Share on other sites More sharing options...
linuxdream Posted January 25, 2007 Share Posted January 25, 2007 Most people in here would probably tell you to store it in a MySQL DB. You would need to:1) Create the table structure with all the types of information you would need2) Create a processing page with PHP to take the posted data, filter it, and store it.3) Create an Admin section or something like that for you to view the posted data.That type of code on just about every other site on the Internet so it should not be hard to find. This site has a lot of tutorials that have exactly what you need code wise. Link to comment https://forums.phpfreaks.com/topic/35732-just-a-stupid-question/#findComment-169323 Share on other sites More sharing options...
!!!!! Posted January 25, 2007 Author Share Posted January 25, 2007 [quote author=linuxdream link=topic=124059.msg513554#msg513554 date=1169762236]Most people in here would probably tell you to store it in a MySQL DB. You would need to:1) Create the table structure with all the types of information you would need2) Create a processing page with PHP to take the posted data, filter it, and store it.3) Create an Admin section or something like that for you to view the posted data.That type of code on just about every other site on the Internet so it should not be hard to find. This site has a lot of tutorials that have exactly what you need code wise.[/quote]I just realized my code was HTML in the PHP forum... so would it be possible to store the info even with my code being HTML ? Link to comment https://forums.phpfreaks.com/topic/35732-just-a-stupid-question/#findComment-169324 Share on other sites More sharing options...
boo_lolly Posted January 25, 2007 Share Posted January 25, 2007 in this case, PHP is the medium between the values of your form input fields, and the place where this information will be stored. Link to comment https://forums.phpfreaks.com/topic/35732-just-a-stupid-question/#findComment-169326 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.