Wordpress - 发送处方集并使用 header()

Wordpress - send formulary and use header()

我尝试应用我在该网站上看到的其他答案的解决方案,但我的重定向根本不起作用。

我有一个处方集,唯一的任务是在 table 中进行插入,为此,我有 2 页:1 页带有处方集,另一页包含用于插入的 php 代码.好的,插入有效,但 header() 函数不会再次将我重定向到处方集。为什么?

$fecha = $_POST["fecha_marcaje"];
$hora = $_POST["hora_marcaje"];
$nombre = $_POST["nombre"];
$pin = $_POST["pin"];
$fechayhora = $fecha." ".$hora;



$con=mysqli_connect('************','************','************','************');
if (mysqli_connect_errno()) {
  echo "Error de conexión con la base de datos: " . mysqli_connect_error();
}


if(empty($fecha) || empty($hora)){

    echo "Debe rellenar todos los campos";
    }else{

    $sql="INSERT INTO `webemple_pw5`.`fichajes` (`Name`, `sTime`, `VerifyFlag`, `MachineName`, `checktype`, `sensorid`, `workcode`, `sDate`, `Pin`) VALUES ('$nombre', '$fechayhora', NULL, NULL, NULL, NULL, NULL, '$fecha', '$pin')";
    }

    //header("Location:". home_url('/') . "wp-content/themes/twentyfourteen/visualizar-tiempo.php?bn=$pin");
    if (!mysqli_query($con,$sql)) {
      die('Error: ' . mysqli_error($con));
    }
    header("Location: /wp-content/themes/twentyfourteen/visualizar-tiempo.php?bn=$pin");
    exit();

好吧,我终于找到了解决方案...我用 javascript 做了,它成功了。

window.location = "http://mdp.webempleado.es/visualizar-tiempo/?bn=" + <?=$pin?>;