Order Form

PHP coding talk.

Moderator: Moderators

Order Form

Postby PsychoJim on Thu May 25, 2006 11:01 am

I am desperatly in need of an order form and as my page is PHP, the dreamweaver forms dont work.
if someone could help me out
add jim@euro-gamer.net to msn

or if you would reply here in the order form i need:

Full Name: Required
Email Address: Required
Username: Required
Password: Required

Enter you Existing
Domain Name:


Package Types:Basic
Pro <- One of the following Required
Premium

Hosting Duration: Monthly One of the following Required
Yearly
State how many
Months / Years:
1-18 One of the following Required

Payment Method: Paypal Required

Terms &
Conditions:
Agree Required
Disagree

Submit Clear
My Site:Gamers Network
Forum:Gamers Network Forum
Gamers Network Teamspeak:213.253.57.56:8768
PsychoJim
Registered User
Registered User
 
Posts: 90
Joined: Wed Nov 16, 2005 10:18 pm
Location: Wales

Postby UseLess on Thu May 25, 2006 11:19 am

Greetings,

You can create the form in Dreamweaver (if you must.. ;) ) and then once saved change the file ext from 'html' to 'php' and then add the processing part to process the form data.
Movie Quote:
It's not the years honey, it's the mileage...

I do not provide any install services for phpBB, Mods or Styles.
Please do not pm me for support/scripting help - you won't get any reply. If you have a question then make a post in the appropriate forum.
User avatar
UseLess
Registered User
Registered User
 
Posts: 6220
Joined: Mon Sep 27, 2004 2:14 am
Location: North East, UK

Postby PsychoJim on Thu May 25, 2006 12:02 pm

thats where i dont get it adding the proccessing part

heres what i done in dreamweaver

Code: Select all
<table width="511" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="107">Name</td>
    <td width="404"><form id="form1" name="form1" method="post" action="">
      <input name="textfield" type="text" size="30" />
    </form>
    </td>
  </tr>
  <tr>
    <td>Email Address </td>
    <td><form id="form2" name="form2" method="post" action="">
      <input name="textfield2" type="text" size="30" maxlength="100" />
    </form>
    </td>
  </tr>
  <tr>
    <td>User Name </td>
    <td><form id="form3" name="form3" method="post" action="">
      <input name="textfield3" type="text" size="30" />
    </form>
    </td>
  </tr>
  <tr>
    <td>Password</td>
    <td><form id="form4" name="form4" method="post" action="">
      <input name="textfield4" type="password" size="30" maxlength="15" />
    </form>
    </td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>Package Type </td>
    <td><form id="form5" name="form5" method="post" action="">
      <select name="select" size="1">
        <option>Basic</option>
        <option>Pro</option>
        <option>Premium</option>
      </select>
    </form>
    </td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>Hosting Duration </td>
    <td><form id="form6" name="form6" method="post" action="">
      <select name="select2" size="1">
        <option>Yearly</option>
        <option>Monthly</option>
      </select>
    </form>
    </td>
  </tr>
  <tr>
    <td>Existing Domain Name: </td>
    <td><form id="form7" name="form7" method="post" action="">
      <input name="textfield5" type="text" size="30" />
    </form>
    </td>
  </tr>
  <tr>
    <td>Payment Method </td>
    <td><form id="form8" name="form8" method="post" action="">
      <select name="select3" size="1">
        <option>Paypal</option>
      </select>
    </form>
    </td>
  </tr>
  <tr>
    <td>Terms &amp; Conditions </td>
    <td><form id="form9" name="form9" method="post" action="">
      <select name="select4">
        <option>Agree</option>
        <option>Disagree</option>
      </select>
    </form>
    </td>
  </tr>
</table>
<form id="form10" name="form10" method="post" action="">
  <input type="submit" name="Submit" value="Place Order" />
  <input type="submit" name="Submit2" value="Reset" />
</form>
My Site:Gamers Network
Forum:Gamers Network Forum
Gamers Network Teamspeak:213.253.57.56:8768
PsychoJim
Registered User
Registered User
 
Posts: 90
Joined: Wed Nov 16, 2005 10:18 pm
Location: Wales

Postby UseLess on Thu May 25, 2006 12:41 pm

Greetings,

The above has how many forms... ?

You should do something like this;

Code: Select all
<form name="order" method="post" action="processform.php">
<!-- table in here with the form elements -->
</form>


then do the processing parts to add to the above or in a seperate file, if the form is completed OK process it and do whatever... if not represent the form so any missing information can be entered.

So you'd end up with either;

- 1 file that does everything
- 2 files one for the form and 1 to process the submitted form data
Movie Quote:
It's not the years honey, it's the mileage...

I do not provide any install services for phpBB, Mods or Styles.
Please do not pm me for support/scripting help - you won't get any reply. If you have a question then make a post in the appropriate forum.
User avatar
UseLess
Registered User
Registered User
 
Posts: 6220
Joined: Mon Sep 27, 2004 2:14 am
Location: North East, UK

Postby PsychoJim on Thu May 25, 2006 1:04 pm

as i said above i dont know how to do the processing part as its got to go to paypal
My Site:Gamers Network
Forum:Gamers Network Forum
Gamers Network Teamspeak:213.253.57.56:8768
PsychoJim
Registered User
Registered User
 
Posts: 90
Joined: Wed Nov 16, 2005 10:18 pm
Location: Wales

Postby PsychoJim on Thu May 25, 2006 1:31 pm

ok if someone can make this for me il give details over msn and we will talk about a price
add jim@euro-gamer.net
Thanks Jim
My Site:Gamers Network
Forum:Gamers Network Forum
Gamers Network Teamspeak:213.253.57.56:8768
PsychoJim
Registered User
Registered User
 
Posts: 90
Joined: Wed Nov 16, 2005 10:18 pm
Location: Wales

Postby PsychoJim on Thu May 25, 2006 5:03 pm

ok i had someguy that said he would do it for me, i asked for it to be done by 6pm and i would pay X amount as thats when i wanted to launch my site.
his email is karatana007@hotmail.com

he left it until 5:50pm to go offline and not send anything to me :(
i advise people if you need php work done dont ask this guy
My Site:Gamers Network
Forum:Gamers Network Forum
Gamers Network Teamspeak:213.253.57.56:8768
PsychoJim
Registered User
Registered User
 
Posts: 90
Joined: Wed Nov 16, 2005 10:18 pm
Location: Wales


Return to PHP Programming

Who is online

Users browsing this forum: Google [Bot] and 0 guests