Odpowiedź :
Odpowiedź: Liczę na naj bo trochę się tym bawiłem :D
index.php
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>formularz serwis</title>
</head>
<body>
<form action="form.php" method="POST">
<input type="number" name="tel"> Numer kontaktowy</input><br>
<input type="mail" name="mail"> Adres mail </input><br>
<textarea name="problem" cols="32" rows="10">Opisz swój problem</textarea><br>
Czy obowiązuje gwarancja producenta?
<select name="gwarancja">
<option>TAK</option><option>NIE</option>
</select><br>
<input type="submit" value="prześlij formularz">
</body>
</html>
FORM.php
<?php
$tel = $_POST['tel'];
$mail = $_POST['mail'];
$problem = $_POST['problem'];
$gwarancja = $_POST['gwarancja'];
echo "<b>telefon kontaktowy: </b>"; echo $tel;echo "<br>";
echo "<b>mail kontaktowy: </b>"; echo $mail;echo "<br>";
echo "<b>opis problemu: </b>"; echo $problem;echo "<br>";
echo "<b>czy jest gwarancja: </b>"; echo $gwarancja;echo "<br>";
?>