<?php
$to = "[email protected]";
$subject = "Reparasjon av " . $_REQUEST['type'] . " fra mysite.no";
$types = if(!empty($_REQUEST['type'])) {echo($_REQUEST['type'] . ". ");};
$reps = if(!empty($_REQUEST['rep'])) {echo($_REQUEST['rep']);};
$message = $types . . $reps . "\n\nKommentarer:\n" . $_REQUEST['kommentarer'] . "\n\nFra:\n" . $_REQUEST['navn'] . "\nTelefon: " . $_REQUEST['telefon'] . "\nEmail: " . $_REQUEST['email'] . "\nBosted: " . $_REQUEST['bosted'];
$headers = "From: " . $_REQUEST['email'] . "\r\n" . 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/plain; charset=UTF-8' . "\r\n";
if (mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $headers)) {
header('Location: http://www.mysite.no/');
} else {
header('Location: http://www.mysite.no/');
}
?>
4行目にT_IFエラーがあります。何が問題なのですか?このT_IFエラーは何を意味しますか?
それは "' 'Token_IF' if'が有効ではありません(' if')い" という意味:
は次欲しいです。なぜそれが有効な式でないのかについてtherinの答えを参照してください(式だけが右辺値として使用できます)。 –