Если да то какие есть варианты?
<form method="post" id="formdata" action="/send/send-comment.php" enctype="multipart/form-data">
<div class="form-group">
<label for="exampleInputName">Имя</label>
<input type="text" class="form-control" id="exampleInputName" name="name" placeholder="Введите Ваше имя">
</div>
<button type="submit" class="btn btn-primary">Отправить</button>
</form>
$user_email = $_POST['email'];
$user_name = $_POST['name'];
$user_comment = $_POST['comment'];
echo $user_email.$user_name.$user_comment;