Jump to content

Need help with background php


turles

Recommended Posts

Hi I'm new to php and thus far I have created a html form. But I am at a complete loss as to, how make a background php mailer to go with it I was wondering if anyone might be able to help me... Here is the code for the html side.

[code]
<form id="Contact" name="Contact Form" method="POST" action="webmailer.php">
  <div align="center">
  <table width="300">
    <tr>
      <td width="143"><label>Name</label></td>

      <td width="147"><label>
        <input name="Name" type="text" id="Name" />
      </label></td>
    </tr>
    <tr>
      <td><label>Email</label>
        </label></td>
      <td><input name="Email" type="text" id="Email" /></td>

    </tr>
    <tr>
      <td><label>Freebie 1</label></td>
      <td><label><input name="plans" type="radio" Value="Freebie 1" checked="checked" /></label></td>
    </tr>
    <tr>
    <td><label>Freebie 2</label></td>
      <td><label><input name="plans" type="radio" Value="Freebie 2" /></label></td>

    </tr>
    <tr>
      <td>Basic AU$10.00</td>
      <td><label><input name="plans" type="radio" value="Basic" /></label></td>
    </tr>
    <tr>
      <td><label>Standard AU$15.00</label></td>
      <td><label>

        <input type="radio" name="plans" value="Standard" />
      </label></td>
    </tr>
    <tr>
      <td><label>Advanced AU$20.00</label></td>
      <td><label>
        <input type="radio" name="plans" value="Advanced" />
      </label></td>

    </tr>
    <tr>
      <td><label>Xtreme AUD$35.00</label></td>
      <td><input type="radio" name="plans" value="Xtreme" /></td>
    </tr>
    <tr>
      <td>User Name </td>
      <td><label>

        <input name="Username" type="text" id="Username" maxlength="8" />
      </label></td>
    </tr>
    <tr>
      <td><label>Domain</label>
        </label></td>
      <td><input name="Domain" type="text" id="Domain" /></td>
    </tr>

    <tr>
      <td>Password</td>
      <td><label>
        <input name="Password" type="password" id="Password" maxlength="8" />
      </label></td>
    </tr>
    <tr>
      <td height="21">Confirm Password </td>

      <td><input name="cpassword" type="password" id="cpassword" maxlength="8" /></td>
    </tr>
    <tr>
      <td height="21">&nbsp;</td>
      <td><label>
        <input name="Reset" type="reset" id="Reset" value="Reset" />
        <input type="submit" name="Submit" value="Submit" />
      </label></td>
    </tr>

  </table>
  </div>
  <label><br />
  </label>
</form>
</body>
</html>[/code]

Thank you in advance. :)
Link to comment
https://forums.phpfreaks.com/topic/26287-need-help-with-background-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.