| View previous topic :: View next topic | 
	
	
		| Author | Message | 
	
		| womenoutdoors 
 
 
 Joined: 10 Nov 2012
 Posts: 4
 
 
 | 
			
				|  Posted: Tue Dec 11, 2012 4:49 pm    Post subject: Not getting all the data from our form |   |  
				| 
 |  
				| Our form has 14 questions, but we're only getting data with the answers to the first 5 questions. 
 Our form is here:
 http://lifeworkshelp.com/registration/2013sweden.htm
 
 The form is called HSP gathering registration, and username is womenoutdoors.
 
 What needs to happen so we can get the data for all of our 14 questions?
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| mycontac Site Admin
 
 
 Joined: 31 Dec 2003
 Posts: 2860
 
 
 | 
			
				|  Posted: Wed Dec 12, 2012 4:05 am    Post subject: Reply |   |  
				| 
 |  
				| Good Day, 
 Typically when this is occurring, it is because the page the form is setup on is not using the UTF-8 character set.
 
 Look at line 17 of the code on your webpage:
 
 
 
 
	  | Code: |  
	  | <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |  
 Change the above to:
 
 
 
 
	  | Code: |  
	  | <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> |  
 This will fix the problem.
 
 Nick Ladd
 myContactForm.com
 |  | 
	
		| Back to top |  | 
	
		|  | 
	
		| womenoutdoors 
 
 
 Joined: 10 Nov 2012
 Posts: 4
 
 
 | 
			
				|  Posted: Wed Dec 12, 2012 4:38 am    Post subject: |   |  
				| 
 |  
				| It works now, thank you! |  | 
	
		| Back to top |  | 
	
		|  | 
	
		|  |