How can i create html contect us form.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How can i create html contect us form.

    How can i create contect us form. Html not php. Please help me. Write code here. Please do not attech any files. Because it is not supporting for me.thanks

    #2
    <form action="contact.html">
    <input name="contact"/><br/>
    <input type="sumbit" value="Send"/>
    </form>
    Last edited by something else; 12.11.09, 05:20.

    Comment


      #3
      Thanks but it is not complete. I want to that my site's visitor can email me at my email address. How can i do that?

      Comment


        #4
        if u message me ya email address i will give u the html coding for what u are looking for
        HELP THEM WHO HELPS YOU



        i only work on wapdesire v_2 coding only

        Comment


          #5
          Originally posted by the_new_man View Post
          How can i create contect us form. Html not php. Please help me. Write code here. Please do not attech any files. Because it is not supporting for me.thanks
          better source view a site who has that kind of form you like..
          My Blog: http://jhommark.blogspot.com
          My Facebook: http://www.facebook.com/jhommark
          My Official Site: http://www.undergroundweb.tk
          My Community Site: http://undergroundwap.xtreemhost.com

          Comment


            #6
            Originally posted by brand View Post
            if u message me ya email address i will give u the html coding for what u are looking for
            cant write it here? If the file has no php, how can it send the email?
            mysterio.al - programming is a functional art

            Comment


              #7
              by using an iframe into someone elses site? lol

              Comment


                #8
                3WebHost look here its html code
                Free WebHosting :D

                8):closedeyes:^_^

                Comment


                  #9
                  Originally posted by Richie24 View Post
                  3WebHost look here its html code
                  lol richie,
                  you call this page html:
                  http://3webhost.co.cc/mailer.php ?
                  this is the page which sends the email.
                  mysterio.al - programming is a functional art

                  Comment


                    #10
                    Create a PHP Feedback Form (Requires PHP 4.2 or above)

                    or

                    Create a Perl Feedback Form CGI Script
                    click here


                    Free Feedback Form Wizard: Free Customized Feedback Form Script for Your Website (thesitewizard.com)


                    for others who wana php






                    E-mail Form Code (contact.php)
                    Code:
                    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
                    
                    <html>
                    <head>
                    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                    <title>Email Form </title>
                    </head>
                    <body>
                    
                    <form method="post" action="sendeail.php">
                    
                    <!-- DO NOT change ANY of the php sections -->
                    <?php
                    $ipi = getenv("REMOTE_ADDR");
                    $httprefi = getenv ("HTTP_REFERER");
                    $httpagenti = getenv ("HTTP_USER_AGENT");
                    ?>
                    
                    <input type="hidden" name="ip" value="<?php echo $ipi ?>" />
                    <input type="hidden" name="httpref" value="<?php echo $httprefi ?>" />
                    <input type="hidden" name="httpagent" value="<?php echo $httpagenti ?>" />
                    
                    
                    Your Name: <br />
                    <input type="text" name="visitor" size="35" />
                    <br />
                    Your Email:<br />
                    <input type="text" name="visitormail" size="35" />
                    <br /> <br />
                    <br />
                    Attention:<br />
                    <select name="attn" size="1">
                    <option value=" Sales n Billing ">Sales n Billing </option> 
                    <option value=" General Support ">General Support </option> 
                    <option value=" Technical Support ">Technical Support </option> 
                    <option value=" Webmaster ">Webmaster </option> 
                    </select>
                    <br /><br />
                    Mail Message:
                    <br />
                    <textarea name="notes" rows="4" cols="40"></textarea>
                    <br />
                    <input type="submit" value="Send Mail" />
                    <br />
                    </form>
                    
                    </body>
                    </html>




                    Code for sendeail.php

                    Code:
                    
                    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
                    
                    <html>
                    <head>
                    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
                    <title>Sendemail Script</title>
                    </head>
                    <body>
                    
                    <!-- Reminder: Add the link for the 'next page' (at the bottom) --> 
                    <!-- Reminder: Change 'YourEmail' to Your real email --> 
                    
                    <?php
                    
                    $ip = $_POST['ip']; 
                    $httpref = $_POST['httpref']; 
                    $httpagent = $_POST['httpagent']; 
                    $visitor = $_POST['visitor']; 
                    $visitormail = $_POST['visitormail']; 
                    $notes = $_POST['notes'];
                    $attn = $_POST['attn'];
                    
                    
                    if (eregi('http:', $notes)) {
                    die ("Do NOT try that! ! ");
                    }
                    if(!$visitormail == "" && (!strstr($visitormail,"@") || !strstr($visitormail,"."))) 
                    {
                    echo "<h2>Use Back - Enter valid e-mail</h2>\n"; 
                    $badinput = "<h2>Feedback was NOT submitted</h2>\n";
                    echo $badinput;
                    die ("Go back! ! ");
                    }
                    
                    if(empty($visitor) || empty($visitormail) || empty($notes )) {
                    echo "<h2>Use Back - fill in all fields</h2>\n";
                    die ("Use back! ! "); 
                    }
                    
                    $todayis = date("l, F j, Y, g:i a") ;
                    
                    $attn = $attn ; 
                    $subject = $attn; 
                    
                    $notes = stripcslashes($notes); 
                    
                    $message = " $todayis [EST] \n
                    Attention: $attn \n
                    Message: $notes \n 
                    From: $visitor ($visitormail)\n
                    Additional Info : IP = $ip \n
                    Browser Info: $httpagent \n
                    Referral : $httpref \n
                    ";
                    
                    $from = "From: $visitormail\r\n";
                    
                    
                    mail("YourEmail", $subject, $message, $from);
                    
                    ?>
                    
                    <p align="center">
                    Date: <?php echo $todayis ?> 
                    <br />
                    Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> ) 
                    <br />
                    
                    Attention: <?php echo $attn ?>
                    <br /> 
                    Message:<br /> 
                    <?php $notesout = str_replace("\r", "<br/>", $notes); 
                    echo $notesout; ?> 
                    <br />
                    <?php echo $ip ?> 
                    
                    <br /><br />
                    <a href="contact.php"> Next Page </a> 
                    </p> 
                    
                    </body>
                    </html>


                    and one more script attached in asp
                    Attached Files
                    Last edited by GiLL; 13.11.09, 09:54.
                    left wap stuff

                    Comment


                      #11
                      Originally posted by Mysterio3 View Post
                      lol richie,
                      you call this page html:
                      3webhost ?
                      this is the page which sends the email.
                      its done in php and HTML
                      Free WebHosting :D

                      8):closedeyes:^_^

                      Comment


                        #12
                        maybe the_new_man, has any site in wen.ru and needs html. As i remember, they dont accept php files.
                        mysterio.al - programming is a functional art

                        Comment


                          #13
                          Yes.,the best thing 4u is just signup 4 a free email service 4ur site or do what i said in my prev post..the form is urz but the mailer is from a site
                          My Blog: http://jhommark.blogspot.com
                          My Facebook: http://www.facebook.com/jhommark
                          My Official Site: http://www.undergroundweb.tk
                          My Community Site: http://undergroundwap.xtreemhost.com

                          Comment


                            #14
                            Originally posted by Mysterio3 View Post
                            maybe the_new_man, has any site in wen.ru and needs html. As i remember, they dont accept php files.
                            i created a site @ xtgem.com .

                            Comment


                              #15
                              Hey can i use free hosting provider for create email form. If yes so suggest me how. I m on mobile not on pc.but i m using operamini. I have 110mb.com free host account!

                              Comment

                              Working...
                              X