0

所以我有一个按钮

<input type="button" value="add" onclick="document.location.href='add.php?myUcode=<?=$row['ucode'];?>'" />

到另一个页面(我们称之为 Page1)。在 Page1 中,我想向 $_SESSION['employees'] 添加一个值,然后将其重定向回 home.php。但是当我单击按钮时,它会卡在 add.php 中。在我调用 Header 方法之前没有回声或空格。现在我不知道我的代码有什么问题:

<?php
session_start();
if ($_POST['tambah_ucode']) {
if (isset($_SESSION['jum_petugas'])) {
    $_SESSION['jum_petugas'] = 1;
    $ctr = $_SESSION['jum_petugas'];
} else {
    $ctr = $_SESSION['jum_petugas'];
    $ctr++;
    $_SESSION['jum_petugas'] = $ctr;
}
$_SESSION['ucode_petugas'][$ctr] = $_POST['tambah_ucode'];
header('Location: localhost/hrm2.1/lembur_add.php');
}
?>
4

4 回答 4

0

尝试以下

header('Location:http://localhost/hrm2.1/lembur_add.php');

于 2013-07-30T09:59:52.610 回答
0

尝试这个,

header('Location: lembur_add.php');
exit;

或者

header('Location: http://localhost/hrm2.1/lembur_add.php');
exit;
于 2013-07-30T09:53:11.340 回答
0
header('location:localhost/hrm2.1/lembur_add.php')

没有空间

于 2013-07-30T09:55:08.473 回答
0

而不是标题(...),请尝试

echo "<script type='text/javascript'> document.location = 'yourLocation'; </script>";
于 2018-04-30T11:30:12.340 回答