How can I create a html form to extract certain data from a flat file and send it via email?
-
I know how to create an html form in Expression Web 3. Now I need to create a script through which the client enters their email and they are mailed their personal info, such as name, address, email, etc... sort of like a reset password form in other words but a different concept. The details are held in a flat file (I know this may not be secure). Can someone tell me of a script or a program to do this. Thank you for your help in advance.
-
Answer:
ok, you need a mail server, php server (preferable but you may be able to do it with asp as well). OK, set-up your mail server and configure it in the php.ini file (where it has all the smtp stuff). Now go the php script: <?php $name = $_POST['name']; //gets information from the form $email = $_POST['email']; //gets email $sendMessage = mail($email, "Confirmation or wteva", "Hi, you have....blah"); if($sendMessage) { echo "check email"; } else { echo "an error echo in the sending of the email"; } ?> or sumfin like that... but you get the principle hope i help :-)
Cifru at Yahoo! Answers Visit the source
Other answers
i'm giving you the algorithm.......... Implement it: Begin: 1. Client enter his e-mail in a GET/POST request. 2. Grab the GET/POST request from the client 3. Validate the e-mail from your database 4. In success call mail() function to send him/her with his/her details. End **************************************… Please visit http://www.watch-and-download.info to download youtube videos and search video.
raihan
You need to program the steps shown in a server side scripting language. Typically PHP or ASP. That's all the help I can give as I haven't done any PHP or ASP.
satsumo
Related Q & A:
- How can i create a mobile application server?Best solution by Stack Overflow
- How can i create a new blog?Best solution by Yahoo! Answers
- How can I create a new font?Best solution by Yahoo! Answers
- How can I add a HTML code to My Yahoo homepage?Best solution by Yahoo! Answers
- How can I create a cute, artsy, unique facebook profile?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.