thesaleboat Posted February 6, 2009 Share Posted February 6, 2009 Ok, previously, the information was sent directly through an email, therefore we had no need for a database. Now we are going to be storing this information (and a ton more) in a MySQL database. I am requesting some suggestions, as to how I would place all of this information within a database. *Note: Some of these fields will be entire paragraphs. $Position=htmlspecialchars($_POST['requiredPosition']); $FirstName=htmlspecialchars($_POST['requiredFirstName']); $MiddleInitial=htmlspecialchars($_POST['requiredMiddleInitial']); $LastName=htmlspecialchars($_POST['requiredLastName']); $TelephoneNumber=$_POST['requiredTelephoneNumber']; $EmailAddress=$_POST['requiredEmailAddress']; $HomeAddress=htmlspecialchars($_POST['requiredHomeAddress']); $SecurityClearance=htmlspecialchars($_POST['requiredSecurityClearance']); $Education=htmlspecialchars($_POST['requiredEducation']); $ProfessionalExperience=htmlspecialchars($_POST['requiredProfessionalExperience']); $ProfessionalLicenses=htmlspecialchars($_POST['requiredProfessionalLicenses']); $ComputerProficiency=htmlspecialchars($_POST['requiredComputerProficiency']); $Miscellaneous=htmlspecialchars($_POST['Miscellaneous']); Quote Link to comment https://forums.phpfreaks.com/topic/144122-solved-database-advice-for-large-form/ Share on other sites More sharing options...
premiso Posted February 6, 2009 Share Posted February 6, 2009 MySQL PHP Insert Quote Link to comment https://forums.phpfreaks.com/topic/144122-solved-database-advice-for-large-form/#findComment-756233 Share on other sites More sharing options...
thesaleboat Posted February 6, 2009 Author Share Posted February 6, 2009 hahahah... thank you! Quote Link to comment https://forums.phpfreaks.com/topic/144122-solved-database-advice-for-large-form/#findComment-756240 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.