Making contact form using php and mysql
Making a contact form in Php.     Introduction:   For this you will need basic php knowledge, patience and a willingness to  learn. You will also need a text editor ( I am  using notepad for example ) and a means of testing out this script, a server on  your pc for example.   Part 1 - The form.   Well seeing as we are making a contact form I thought it best to start off with  making the form. This is only simple html and I expect you all know this already. But for a contact form I am going to  include:   - A name box   - A contact drop down list   - A subject box   - A email box   - A message box   - A submit button   - A reset button   So on with the code:   Code:        <div  align="center">        <form action="" method="POST">        <b> Please enter your name:</b><br>       ...
