like this one:
or this one:
http://www.clearance.com/get_letusguide.asp
only i think they are using PHP which I do not understand.
Please help...
like this one:
or this one:
http://www.clearance.com/get_letusguide.asp
only i think they are using PHP which I do not understand.
Please help...
Two quick, practical points tied to 's examples and 's advice: a working contact page is two parts — the visible HTML form and something on the server (or a third‑party endpoint) that accepts and processes submissions. The HTML side should use semantic elements and HTML5 validation: label elements paired with id, name attributes on every input, type="email" for email fields, and method="post". A concise primer on HTML form patterns is at MDN — Forms.
Three realistic implementation routes and what to watch for:
mail() to improve deliverability and avoid header injection issues; see the PHP docs for mail() caveats and PHPMailer on GitHub. Minimal checklist (use while building/testing):
These steps provide a safer, more reliable contact form than copying markup from random sites; logging submissions to a local file during early tests helps diagnose server/SMTP issues before enabling live email.
Jump to Post— autocrat 52Okay... making a form is not reliant upon server side scripting... making the form do something often is.
On the upside, if all you are wanting is something for emails, then the chances are your host has some basic scripts/cgi/perl etc. that you can use, and that are fairly …
Okay... making a form is not reliant upon server side scripting... making the form do something often is.
On the upside, if all you are wanting is something for emails, then the chances are your host has some basic scripts/cgi/perl etc. that you can use, and that are fairly simple to implement.
One of hte more common ones is cgiemail.
It may be worth giving your hosts a quick call and asking what they have available, and what it can do.
Oh, and try not to copy those forms, as they are kind of "poor" examples of accessibility.
It would probably be worht making a few "practice forms" and getting the functionality working... then comming back and enquiring about improving the styling/accessibility of the form afterwards.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.