[HELP] [PHP] Sending feedback to email [PHP] [HELP]

VaginaMuncher

Chilling with me bitch Fiona
Mar 17, 2013
447
58
Howdy...

So basically, I'm making a feedback/support area, where users who have issues with my website/errors found they can submit a some what call for help which sends right to the database table or to my email, I would prefer to have it in my database but what ever :D

Code:
<form method="POST">
<input type="submit" style="width: 80%" value="Submit message" name="submit" class="submit" style="float:right">
Result: <font color="red"><b><?php if(isset($_POST["submit"])) { print("Your message has been submitted! <meta http-equiv=\"refresh\" content=\"3; url=/me\">"); } ?></b></font>

So its ready but I don't know how to make it submit to the email/database, if anyone could help?
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,638
2,393
Howdy...

So basically, I'm making a feedback/support area, where users who have issues with my website/errors found they can submit a some what call for help which sends right to the database table or to my email, I would prefer to have it in my database but what ever :D

Code:
<form method="POST">
<input type="submit" style="width: 80%" value="Submit message" name="submit" class="submit" style="float:right">
Result: <font color="red"><b><?php if(isset($_POST["submit"])) { print("Your message has been submitted! <meta http-equiv=\"refresh\" content=\"3; url=/me\">"); } ?></b></font>

So its ready but I don't know how to make it submit to the email/database, if anyone could help?
You're clearly a newbie to PHP, I'd leave the database stuff for now.

Take a look into , and for now... alternatively you could use to email the data to you.
 

VaginaMuncher

Chilling with me bitch Fiona
Mar 17, 2013
447
58
Yep I'm new to php, Hence my avatar...
Please could you come up with a little script which I could use which sends to database? If not no problem :)
 

Heaplink

Developer & Designer
Nov 9, 2011
510
173
If you're trying to learn anything it doesn't help you to ask others to do it for you. Do a bit of research yourself and work for it, otherwise you will not learn it at all.
 

GarettM

Posting Freak
Aug 5, 2010
833
136
I know this is very bad and not recommended but he should start with mysql just like we all did.

If you need any babying pm me and I can help you tommarow I'm off to bed ;3
 

Users who are viewing this thread

Top