![]() |
|
Simple Contact Form (PHP) - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: Simple Contact Form (PHP) (/Thread-Simple-Contact-Form-PHP) Pages:
1
2
|
Simple Contact Form (PHP) - YellowKnife - 08-27-2013 Below is a Simple Contact Form, used in PHP. contact.php Quote:<table width="400" border="0" align="center" cellpadding="3" cellspacing="1"> send_contact.php Quote:<?php Any Questions or Queries PM me. YellowKnife RE: Simple Contact Form (PHP) - Sapientia - 08-27-2013 Nice job if you wrote this yourself! RE: Simple Contact Form (PHP) - YellowKnife - 08-27-2013 These are old tutorials from my old forum. Thought would be nice to add here. RE: Simple Contact Form (PHP) - Sapientia - 08-27-2013 Oh, I see. Nice share though! RE: Simple Contact Form (PHP) - Mafia - 08-27-2013 Nice share, I needed something like this. RE: Simple Contact Form (PHP) - Slim - 08-31-2013 Tables :fuu: Pretty cool but would be nice to have customized errors for every field. RE: Simple Contact Form (PHP) - iPokemon - 09-04-2013 It doesn't have any kind of filtration or securing mechanisms? It doesn't check for a valid e-mail? And sending as someone from a mail server other than the original host throws red flags to providers and marks them as spam. RE: Simple Contact Form (PHP) - Sydonay - 09-04-2013 (09-04-2013, 04:32 AM)iPokemon Wrote: It doesn't have any kind of filtration or securing mechanisms? It doesn't check for a valid e-mail? This exactly. Definitely a good start, OP, but this is flawed and highly vulnerable to spam, leading to HIGHLY slowed messages. RE: Simple Contact Form (PHP) - iPokemon - 09-04-2013 (09-04-2013, 04:41 AM)Sydonay Wrote:(09-04-2013, 04:32 AM)iPokemon Wrote: It doesn't have any kind of filtration or securing mechanisms? It doesn't check for a valid e-mail? There'd be no "slowing" of messages, you'd just have a pretty full spam box if people decided to bot it and use it as an e-mail bomber. ReCAPTCHA or another CAPTCHA alternative would be a plus too. RE: Simple Contact Form (PHP) - Sydonay - 09-05-2013 (09-04-2013, 10:53 PM)iPokemon Wrote:(09-04-2013, 04:41 AM)Sydonay Wrote:(09-04-2013, 04:32 AM)iPokemon Wrote: It doesn't have any kind of filtration or securing mechanisms? It doesn't check for a valid e-mail? Actually, excessive outgoing messages delays sending. True story, seen it happen. |