Jump to content

jayzee

New Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by jayzee

  1. The dropdown is for a php feedback form where i need to specify a corrrect string to get data from the dropdown. perhaps that was the question if i restate it
  2. I need help for inserting drop-down select option in the below mentioned feedback form. PHP Code <? $name = $_REQUEST['name']; $payment = $_REQUEST['payment']; $designid = $_REQUEST['designid']; $message = $_REQUEST['message']; $phone = $_REQUEST['phone']; $mobile = $_REQUEST['mobile']; $email = $_REQUEST['email']; $subject = "Interglobe Travels - Thank you for your e-mail!"; $body = "Dear $name\n\n Thank You!\n\n We have received your response.\n Please give us 24 Hours to respond.\n\nRegards\nInterglobe Travels"; $headers = "From: myemail@gmail.com"; mail($email, $subject, $body, $headers); mail( "myemail@gmail.com", " Hey $name contacted us via our Website", "Contact Infon\n\nFull Name: $name,\nOrganization: $organization,\nDesignation: $designation,\nMailing Address: $message,\nMobile: $mobile,\nPhone: $phone,\nFax: $fax,\nEmail: $email,\nMailing Address: $message, " , "From: $email" ); header( "Location: tu.html" ); ?> HTML Code <form method="post" action="V019mail31.php"> Name: <br /><input class="text" name="name" type="text" /><br /> Email: <br /><input class="text" name="email" type="text" /><br /> Mobile: <br /><input class="text" name="mobile" type="text" /><br /> I have completed my: <br /><input class="text" name="subject" type="text" value="Your current qualification goes here"/> <br /> I want to Apply for: <br /><input class="text" name="subject" type="text" /> <br /> Message:<br /> <textarea name="message" rows="4" cols="50"> </textarea> <br /> <input type="submit" /> </form>
  3. Thanks a lot DarkRanger. finally its working perfectly now.. Thanks a really lot for your support.
  4. When I get the form email from my website they come from "Nobody" Can I change that to "your website" or any other? i am using the following codes FOT HTML <form action="V019mail31.php"" method="post" id="contactform"> Full Name: <br /><input name="name" type="text" /><br /> Organization: <br /><input name="organization" type="text" /><br /> Designation: <br /><input name="designation" type="text" /><br /> Mailing Address:<br /> <textarea name="message" rows="3" cols="70"> </textarea><br /> Mobile: <br /><input name="mobile" type="text" /><br /> Telephone: <br /><input name="phone" type="text" /><br /> Fax: <br /><input name="fax" type="text" /><br /> Email: <br /><input name="email" type="text" /><br /> <input type="submit" /> </form> For PHP <? $name = $_REQUEST['name']; $organization = $_REQUEST['organization']; $designation = $_REQUEST['designation']; $message = $_REQUEST['message']; $phone = $_REQUEST['phone']; $mobile = $_REQUEST['mobile']; $fax = $_REQUEST['fax']; $email = $_REQUEST['email']; mail($email, "The Centre For Change - Thank you for your e-mail!", "Dear $name\n\n Thank You!\n\n We have received your request for registration.\n Please note that your confirmation is subject to receipt of payment.\n\nRegards\nThe Centre For Change"); mail( "registration@thecentreforchange.com", "Online Registeration - $name ", "Online Registeration\n\nFull Name: $name,\nOrganization: $organization,\nDesignation: $designation,\nMailing Address: $message,\nMobile: $mobile,\nPhone: $phone,\nFax: $fax,\nEmail: $email,\nMailing Address: $message, " ); header( "Location: tu.html" ); ?> I have reviewed the old post but its still not solving my problem Need help You can vie the screenshot as well from here: On our recieving end: On Client End: (this is the auto-responder email sent to client as the form is submitted)
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.