Created a form, when I try to submit a site, I get an error "The site cannot process this request yet." Below is the send script code. What is the problem?
<?php // Переменные $name = $_POST['name']; $contact = $_POST['contact']; $car = $_POST['car']; $model = $_POST['model']; $year = $_POST['year']; $mailto = '12345@yandex.ru;' //Отправка mail($mailto ,$name ,$contact , $car , $model, $year ); ?>