Forum Webmastera, HTML, CSS, PHP, MySQL, Hosting, Domeny - Forum dla Webmasterów
Formularz kontaktowy HTML - Wersja do druku

+- Forum Webmastera, HTML, CSS, PHP, MySQL, Hosting, Domeny - Forum dla Webmasterów (https://www.webmastertalk.pl)
+-- Dział: Technologie internetowe - tworzenie stron WWW (https://www.webmastertalk.pl/forum-technologie-internetowe-tworzenie-stron-www)
+--- Dział: xHTML, CSS, JavaScript (https://www.webmastertalk.pl/forum-xhtml-css-javascript)
+--- Wątek: Formularz kontaktowy HTML (/thread-formularz-kontaktowy-html)



Formularz kontaktowy HTML - Kaza152 - 21-06-2012

Kod:
            <div class="panel" title="Kontakt">
                <div class="wrapper">
                    
                    <h2>Kontakt:</h2>
                    
                    <div id="contact_form">
                    * Wszystkie Pola są Obowiązkowe.<br><br>
                        <form method="post" name="contact" action="#5">
                        
                        <input type="hidden" name="post" value=" Send " />
                        <label for="author">Imie i Nazwisko:</label> <input type="text" id="author" name="author" class="required input_field" />
                        <div class="cleaner_h10"></div>
                        
                        <label for="email">Email:</label> <input type="text" id="email" name="email" class="validate-email required input_field" />
                        <div class="cleaner_h10"></div>
                        
                        <label for="url">Nr. Telefonu:</label> <input type="text" name="url" id="url" class="input_field" />
                        <div class="cleaner_h10"></div>
                        
                        <label for="text">Treść:</label> <textarea id="text" name="text" rows="6" cols="30" class="required"></textarea>
                        <div class="cleaner_h10"></div>
                        
                        <input style="font-weight: bold;" type="submit" class="submit_btn" name="submit" id="submit" value=" Wyślij " />
                        <input style="font-weight: bold;" type="reset" class="submit_btn" name="reset" id="reset" value=" Anuluj " />

                        
                        </form>
                    </div>


Witam.

Jest to fragment strony HTML (formularza kontaktowego)

W którym miejscu mam wpisać adres na jaki mają być przekazywane wiadomości ?


RE: Formularz kontaktowy HTML - Pedro84 - 21-06-2012

Poczytaj podstawy.

Maila w HTMLu nie wyślesz, od tego jest, np. PHP.


RE: Formularz kontaktowy HTML - Kartofelek - 21-06-2012

ja bym wstawił w #5

http://webmaster.helion.pl/index.php/formularze

tutaj masz o tym dobrze napisane ("Ogólne ramy formularza").

Ale Pedro ma rację. "Lepsiejsi" robią wysyłanie formularzy z serwera (np poprzez php).