Witam,
Otóż używam Quick.Cms, do strony internetowej i zawiera on plugin - formularz kontaktowy przez e-mail, ale niestety w wersji rozszerzonej a mnie na takową nie stać .
Chodzi o to, że mam taki kod, chciałbym, by on był umieszczony na jednej podstronie - kontakt. Oczywiście, mógłbym zrobić stronę kontakt.php i dać do niej przekierowanie, ale chciałbym, by ten kod był umieszczony w tle strony, gdyż tak najzwyczajniej wygląda bardziej estetycznie. Proszę wytłumaczyć jak dla jakiegoś laika Pozdrawiam
@edit, ewentualnie, jeżeli nie coś takiego, to przydałby się skrypt w javie, który po wciśnięciu wywołuje formularz kontaktowy w okienku.
<?php if(isset($_POST['submit'])){ $to = "xxxxxxxx"; // this is your Email address $from = $_POST['email']; // this is the sender's Email address $telefon = $_POST['telefon']; $first_name = $_POST['first_name']; $last_name = $_POST['last_name']; $subject = "xxxxxx"; $subject2 = "xxxxxx"; $message = $telefon . " " . $first_name . " " . $last_name . " napisal:" . "\n\n" . $_POST['message']; $message2 = "Kopia Twojej wiadomosci " . $first_name . "\n\n" . $_POST['message']; $headers = "Od:" . $from; $headers2 = "Od:" . $to; mail($to,$subject,$message,$headers); mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender echo "Wiadomosc wyslana, dziekujemy " . $first_name . ", Skontaktujemy sie tak szybko jak to tylko mozliwe."; // You can also use header('Location: thank_you.php'); to redirect to another page. } ?> <!DOCTYPE html> <head> <title>Kontakt E-mailowy</title> </head> <body> <form action="" method="post"> Imie: <input type="text" name="first_name"><br> Nazwisko: <input type="text" name="last_name"><br> Email: <input type="text" name="email"><br> Telefon: <input type="text" name="telefon"><br> Wiadomosc:<br><textarea rows="5" name="message" cols="30"></textarea><br> <input type="submit" name="submit" value="Wyslij"> </form> </body> </html>