PHP or HTML email and password confirmation?

How to create and i dont know what i will use php / html or a combination? i want to see my client form to my email representing the email confirmation and password confirmation

so what will i do?

you seem to be confused about what php and html are for. at the heart of things, php does stuff, html displays stuff. so let’s take your form for for example…

  • html will display your form
  • php will mail your form data

so you’re going to use both. php can include html in it. so for instance, these forum pages are coded in php, but the output is html (view source shows html, not php). that’s because browsers understand html, but not php. so for the forum page to display anything in a browser, a server is needed to parse and process the php, outputting HTML. so imagine it like this:

php page -> [server] -> HTML output -> browser

in the case of your form…
HTML output -> browser -> user input/submit -> php page -> [server] (mails you the user’s input)

that’s why we have Client Side (HTML, CSS, etc.) and Server Side (PHP, ASP, etc.) here are the forums. client side doesn’t really perform an action, server side does that.

Yes! but if you could give me some code in php or html template? all i need is the enterded email is equal to the confirmed email and also the password is equal to the verified password. help me on this pls…

http://www.google.com/search?q=php+form+confirmation+mail

i’m not going to write the code for you. it’s a waste of everyone’s time. my suggestion is to try writing something, then post your code if it doesn’t work. people are much happier to help out if you’ve already tried.