<form id="contact" action="C:/Users/Guests/Desktop/OSPanel/domains/itrem/www/index.php" method="post">
<h3>Добро пожаловать!</h3>
<h4>Ниже вы можете оставить информацию о себе и мы свяжемся с вами в ближайшее время:)</h4>
<fieldset>
<input name="name" placeholder="Ваше имя" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input name="lastname" placeholder="Ваша фамилия" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input name="post" placeholder="Ваша почта" type="email" tabindex="2" required>
</fieldset>
<fieldset>
<input name="telephone" placeholder="Ваш телефон" type="tel" tabindex="3" required>
</fieldset>
<fieldset>
<input name="skype" placeholder="Ваш Skype аккаунт" type="text" tabindex="3">
</fieldset>
<fieldset>
<textarea name="content" placeholder="Есть ли у вас вопросы?" tabindex="5"></textarea>
</fieldset>
<fieldset>
<input class="button" name="submit" type="submit" id="contact-submit" data-submit="...Отправка" value="Отправить">
</fieldset>
</form>
<?php
try{
$dsn='mysql:host=localhost;dbname=mytestdb';
$username='root';
$passwd='';
$conn = new PDO($dsn, $username,$passwd);
if (empty($_POST['name'])) exit("Поле не заполнено");
if (empty($_POST['content'])) exit("Поле не заполнено");
$query = "INSERT INTO message VALUES (NULL , :name,NOW())";
$msg = $conn->prepare($query);
$msg→execute(['name'=> $_POST['name']]);
$msg_id = $conn->lastInsertId();
$query = "INSERT INTO message content VALUES (NULL , :content, :message_id";
$msg = $conn→prepare($query);
$msg→execute(['content'=> $_POST['content'], 'message_id' => $msg_id]);
$string='Location:form.html';
header($string);
}
catch(PDOException $e)
{
echo "error" .$e->getMessage();
}
?>
это сильно...action="C:/Users/Guests/Desktop/OSPanel/domains/itrem/www/index.php"