problems with linking contact form with php script

hi everyone

i am having problems with a contact form as the contact form is not going to email.before i was getting emails when i submit the contact form but the text was missing i recently change it as ii was told i should use a button as before i linked the button to the php script.i have since then added a button but still cant get it to work.just wanted to know if the code is ok

[php]

da groove records contact form body { background-color: #069; } body,td,th { font-size: large; font-weight: bold; color: #000; }

 

 

 

name

 

Email

 

 

Message

 

 

 

 

 

[/php]

The Submit button should not be wrapped in a link tag.

<p><a href="contact form1.php"> <input name="submit" type="submit" id="button" value="submit"> </a></p>

should be just

  <p><input name="submit" type="submit" id="button" value="Send"></p>

so this is what caused the problem

thanks

thanks for helping

thanks to everyone taking time out to help

still getting the same problem

correct code

Sponsor our Newsletter | Privacy Policy | Terms of Service