Přidat otázku mezi oblíbenéZasílat nové odpovědi e-mailem HTML formulář

Ahoj.. Mám na stránkách formulář na poslání emailu, potřebuji ho ale upravit. Po odeslání formuláře mne to hodí na novou stránku a napíše mi to zprávu definovanou v PHP - "Thank You!". Potřeboval bych to ale předělat tak, aby mne to hodilo na začátek mé hlavní stránky, tzn. #Banner

Házím nejdřív formulář z HTML a pote PHP. Díky..

HTML -

<section id="ContactUs">
<div class="container contact-container">
<h3 class="contact-title">Kontakt</h3>
<div class="contact-outer-wrapper">
<div class="form-wrap">
<p>Napište nám</p>
<form action="contact-form-process.php" method="post">
<div class="fname floating-label">
<input type="text" required class="floating-input" name="title" />
<label for="title">Jméno a přijmení</label>
</div>
<div class="email floating-label">
<input type="email" required class="floating-input" name="email" />
<label for="email">Váš email</label>
</div>

<div class="user-msg floating-label">
<textarea type="text" class="floating-input" name="message"></textarea>
<label for="message" class="msg-label">Popis problému</label>
</div>
<div class="submit-btn">
<a href="#Banner">
<button type="submit">Odeslat</button>
</a>
</div>
</form>

</div>

Předmět Autor Datum
PHP kvuli moc znakum hazim sem <?php if (isset($_POST['email'])) { // EDIT THE 2 LINES BELOW AS RE…
Adam565 12.02.2021 15:16
Adam565
Jak vidíte, v HTML jsem na submit button zkusil hodit href na #banner.. ale to nepomůže.. Nemám s fo…
Adam565 12.02.2021 15:18
Adam565
Ano, přesměrování si musíš zařídit v PHP.
Wikan 12.02.2021 15:21
Wikan
Hádám že to na konci místo - // create email headers $headers = 'From: ' . $email . "\r\n" . 'Reply…
Adam565 12.02.2021 15:24
Adam565
header('Location: http://www.example.com/'); exit; https://www.php.net/manual/en/function.header.ph…
Wikan 12.02.2021 15:29
Wikan
Super, mám to . Díky, vyřešeno. poslední
Adam565 12.02.2021 15:35
Adam565

PHP kvuli moc znakum hazim sem

<?php
if (isset($_POST['email'])) {

// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "info@amafix.cz";
$email_subject = "Dotaz";

function problem($error)
{
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br><br>";
echo $error . "<br><br>";
echo "Please go back and fix these errors.<br><br>";
die();
}

// validation expected data exists
if (
!isset($_POST['title']) ||
!isset($_POST['email']) ||
!isset($_POST['message'])
) {
problem('We are sorry, but there appears to be a problem with the form you submitted.');
}

$name = $_POST['title']; // required
$email = $_POST['email']; // required
$message = $_POST['message']; // required

$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';

if (!preg_match($email_exp, $email)) {
$error_message .= 'The Email address you entered does not appear to be valid.<br>';
}

$string_exp = "/^[A-Za-z .'-]+$/";

if (!preg_match($string_exp, $name)) {
$error_message .= 'The Name you entered does not appear to be valid.<br>';
}

if (strlen($message) < 2) {
$error_message .= 'The Message you entered do not appear to be valid.<br>';
}

if (strlen($error_message) > 0) {
problem($error_message);
}

$email_message = "Form details below.\n\n";

function clean_string($string)
{
$bad = array("content-type", "bcc:", "to:", "cc:", "href");
return str_replace($bad, "", $string);
}

$email_message .= "Name: " . clean_string($name) . "\n";
$email_message .= "Email: " . clean_string($email) . "\n";
$email_message .= "Message: " . clean_string($message) . "\n";

// create email headers
$headers = 'From: ' . $email . "\r\n" .
'Reply-To: ' . $email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>

<!-- include your success message below -->

"Thank You!"

<?php
}
?>

Jak vidíte, v HTML jsem na submit button zkusil hodit href na #banner.. ale to nepomůže.. Nemám s formulářem takové zkušenosti. Ten from action si zavolá PHP a poté už se to čte z PHP asi že ? Takže přesměrování na Index stránku budu psát do PHP ?

Hádám že to na konci místo -

// create email headers
$headers = 'From: ' . $email . "\r\n" .
'Reply-To: ' . $email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>

<!-- include your success message below -->

"Thank You!"

<?php
}
?>

Už jsem zkusil ale mnoho přesměrování a stejnak to nešlo.. Můžeš mne prosím nasměrovat ?

Zpět do poradny Odpovědět na původní otázku Nahoru