AltoRouter POST数据

时间:2017-11-17 03:31:23

标签: php altorouter

我尝试使用AltoRouter发送联系表单,但我没有收到POST内容。

这是我的路线:

$router->map('GET','/kontakt/', 'views/kontakt.php', 'kontakt');
$router->map('POST','/sendContact/', 'views/sendContact.php', 'sendContact');

$match = $router->match();

if($match) {
  require $match['target'];
}
else {
  header("HTTP/1.0 404 Not Found");
}

这是我的表格联系表格

<form name="contactForm" action="./sendContact/" method="post">
      <div class="form-row">
        <div class="form-group col-md-6">
          <label for="inputVorname">Vorname</label>
          <input type="text" class="form-control" id="inputVorname" placeholder="Vorname">
        </div>
</form>

这是sendContact.php

<?php

var_dump($_POST);

但输出是

  

array(0){}

我必须做些什么来捕获POST数据才能使用它们?

由于

0 个答案:

没有答案