www.tutorialspoint.com Forum Index
Register FAQMemberlistUsergroupsTutorials PointLog in
Reply to topic Page 1 of 1
Simple PHP form
Author Message
Reply with quote
Post Simple PHP form 
This code is a simple php form.

Code:

<form>
     <table>
      <tr>
        <td>Name *</td>
        <td><input type="text"></td>
      </tr>
      <tr>
          <td>Email *</td>
          <td><input type="text"></td>
      </tr>
      <tr>
          <td>Phone</td>
          <td><input type="text"></td>
      </tr>
      <tr>
          <td>Field_check</td>
          <td>
             <input type="checkbox" value="1"><label>Check_1</label><br>
             <input type="checkbox" value="2"><label>Check_2</label><br>
             <input type="checkbox" value="3"><label>Check_3</label>
          </td>
      </tr>
      <tr>
          <td>Message *</td>
          <td><textarea rows="5"></textarea></td>
      </tr>
          <tr>
          <td colspan="2"> </td>
      </tr>
          <tr>
          <td colspan="2"> </td>
    </tr>
      <tr>
          <td><input type="button" id="subbut" value="Submit"></td>
      </tr>
     </table>
</form>




I think that this form is useful for many new webmasters

View user's profile Send private message
Display posts from previous:
Reply to topic Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum