I have problem with my contact form

I created this form ( from: phpform.org)
installed and now I can’t receive the data from form in my e mail, I am very new to php And i know I made a mistake, can someone please help me to locate it ? following is the code:

Contact Us
<img id="top" src="top.png" alt="">
<div id="form_container">

	<h1><a>Contact Us</a></h1>
	<form id="form_114682" class="appnitro"  method="get" action="form.php">
				<div class="form_description">
		<h2>Contact Us</h2>
		
	</div>						
		<ul >
		
				<li id="li_5" >
	<label class="description" for="element_5">Please Select one option </label>
	<div>
	<select class="element select medium" id="element_5" name="element_5"> 
		<option value="" selected="selected"></option>
Wholesale Fundraiser Soapmaster
	</select>
	</div> 
	</li>		<li id="li_2" >
	<label class="description" for="element_2">Name </label>
	<span>
		<input id="element_2_1" name= "element_2_1" class="element text" maxlength="255" size="8" value=""/>
		<label>First</label>
	</span>
	<span>
		<input id="element_2_2" name= "element_2_2" class="element text" maxlength="255" size="14" value=""/>
		<label>Last</label>
	</span> 
	</li>		<li id="li_3" >
	<label class="description" for="element_3">Address </label>
	
	<div>
		<input id="element_3_1" name="element_3_1" class="element text large" value="" type="text">
		<label for="element_3_1">Street Address</label>
	</div>

	<div>
		<input id="element_3_2" name="element_3_2" class="element text large" value="" type="text">
		<label for="element_3_2">Address Line 2</label>
	</div>

	<div class="left">
		<input id="element_3_3" name="element_3_3" class="element text medium" value="" type="text">
		<label for="element_3_3">City</label>
	</div>

	<div class="right">
		<input id="element_3_4" name="element_3_4" class="element text medium" value="" type="text">
		<label for="element_3_4">State / Province / Region</label>
	</div>

	<div class="left">
		<input id="element_3_5" name="element_3_5" class="element text medium" maxlength="15" value="" type="text">
		<label for="element_3_5">Postal / Zip Code</label>
	</div>

	<div class="right">
		<select class="element select medium" id="element_3_6" name="element_3_6"> 
		<option value="" selected="selected"></option>
Afghanistan Albania Algeria Andorra Antigua and Barbuda Argentina Armenia Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bhutan Bolivia Bosnia and Herzegovina Botswana Brazil Brunei Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Central African Republic Chad Chile China Colombia Comoros Congo Costa Rica Côte d'Ivoire Croatia Cuba Cyprus Czech Republic Denmark Djibouti Dominica Dominican Republic East Timor Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Ethiopia Fiji Finland France Gabon Gambia Georgia Germany Ghana Greece Grenada Guatemala Guinea Guinea-Bissau Guyana Haiti Honduras Hong Kong Hungary Iceland India Indonesia Iran Iraq Ireland Israel Italy Jamaica Japan Jordan Kazakhstan Kenya Kiribati North Korea South Korea Kuwait Kyrgyzstan Laos Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macedonia Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Mauritania Mauritius Mexico Micronesia Moldova Monaco Mongolia Montenegro Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands New Zealand Nicaragua Niger Nigeria Norway Oman Pakistan Palau Panama Papua New Guinea Paraguay Peru Philippines Poland Portugal Puerto Rico Qatar Romania Russia Rwanda Saint Kitts and Nevis Saint Lucia Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia and Montenegro Seychelles Sierra Leone Singapore Slovakia Slovenia Solomon Islands Somalia South Africa Spain Sri Lanka Sudan Suriname Swaziland Sweden Switzerland Syria Taiwan Tajikistan Tanzania Thailand Togo Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Tuvalu Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Yemen Zambia Zimbabwe
		</select>
	<label for="element_3_6">Country</label>
</div> 
	</li>		<li id="li_4" >
	<label class="description" for="element_4">Phone </label>
	<span>
		<input id="element_4_1" name="element_4_1" class="element text" size="3" maxlength="3" value="" type="text"> -
		<label for="element_4_1">(###)</label>
	</span>
	<span>
		<input id="element_4_2" name="element_4_2" class="element text" size="3" maxlength="3" value="" type="text"> -
		<label for="element_4_2">###</label>
	</span>
	<span>
 		<input id="element_4_3" name="element_4_3" class="element text" size="4" maxlength="4" value="" type="text">
		<label for="element_4_3">####</label>
	</span>
	 
	</li>		<li id="li_6" >
	<label class="description" for="element_6">comments </label>
	<div>
		<textarea id="element_6" name="element_6" class="element textarea medium"></textarea> 
	</div> 
	</li>
		
				<li class="buttons">
		    <input type="hidden" name="form_id" value="114682" />
		    
			<input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
	</li>
		</ul>
	<form>	
	<div id="footer">
		
	</div>
</div>
<img id="bottom" src="bottom.png" alt="">
</body>

the code you posted below simply displays a form and allows you to submit it.

now you need another script that will accept the data, process it and do whatever with the results - in your case send an email.
(it’s not as complicated as it sounds)

check here for a small tutorial: http://www.w3schools.com/php/php_forms.asp

hope that helps
:wink:

Thank you very Much… with your help I have solved …and now I can get in my email the data form…
you all have great day!

Solved!

:wink:

Sponsor our Newsletter | Privacy Policy | Terms of Service