I am looking for someone to put together some php and mysql. I am willing to pay a small amount. If you are intrested please send me message many thanks.
<?php if (isset($_POST['submit'])) { $ans1 = $_POST['q1Ans']; $comments = $_POST['comments']; $message = "$ans1\n$comments"; flush(); mail("YOUREMAIL@DOMAIN.COM","New Survey Result","$message"); flush(); print "Thanks for your input!"; } ?>
* Because this is a free script, I'm not going to test it to ensure its errorless, and this is NOT completely secure, nor does it check for filled fullness.
1) lol, why use a database at all? db resources are cheap. Why waste email resources? I'd rather store my results in a database than in my email inbox but that's just me I guess.
2) Mysql IS open source
1) lol, why use a database at all? db resources are cheap. Why waste email resources? I'd rather store my results in a database than in my email inbox but that's just me I guess.
2) Mysql IS open source
<?php if (isset($_POST['submit'])) { $ans1 = $_POST['q1Ans']; $comments = $_POST['comments']; $message = "$ans1\n$comments"; flush(); mail("YOUREMAIL@DOMAIN.COM","New Survey Result","$message"); flush(); print "Thanks for your input!"; } ?>
* Because this is a free script, I'm not going to test it to ensure its errorless, and this is NOT completely secure, nor does it check for filled fullness.
I could probably use this too. On the php code, do I just create a file named "something".php or does it need to be named specifically? I suppose I just place the html anywhere within the page I want it to show? Thanks in advance. Dave
__________________
Please login or register to view this content. Registration is FREE | Get Free Traffic! Increase Conversions! Explode Your Customer Base!
I could probably use this too. On the php code, do I just create a file named "something".php or does it need to be named specifically? I suppose I just place the html anywhere within the page I want it to show? Thanks in advance. Dave
Hi
You can name the PHP file what you like, as long as you put your file name in the HTML form's action field.