- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题可能看起来很相似,但请理解我的问题。在我的更新页面中,我对 $_GET
方法感到困惑。在我的第一页中,我提供了一个像这样编辑表格的链接
index.php
<?php
include_once("db.php");
$result1 = mysqli_query($connect, "SELECT * FROM mrinsert WHERE userid='{$_SESSION['user_id']}'");
?>
<?php
while($res = mysqli_fetch_array($result1)) {
echo "<tr>";
echo "<td>".$res['bugta']."</td>";
echo "<td>".$res['releaseta']."</td>";
echo "<td>".$res['ccota']."</td>";
echo "<td><a href=\"mredit.php?mrinsertid=$res[mrinsertid]\">Edit</a> | <a href=\"mrdelete.php?mrinsertid=$res[mrinsertid]\" onClick=\"return confirm('Are you sure you want to delete?')\">Delete</a></td>";
}
?>
我的 mredit.php
页面使用 mrinsertid
显示现有值。但是当尝试更新值时,它会在这个地方给出错误:
<?php
//getting id from url
$mrinsertid = $_GET['mrinsertid']; //ERROR Undefined index
//selecting data associated with this particular id
$result = mysqli_query($connect, "SELECT * FROM mrinsert WHERE mrinsertid=$mrinsertid"); //WARNING in this line
while($res = mysqli_fetch_array($result))
{
$releaseta=$res['releaseta'];
$keyta=$res['keyta'];
$programleadsta=$res['programleadsta'];
$ccota=$res['ccota'];
$nextmilestonesta=$res['nextmilestonesta'];
$bugta=$res['bugta'];
$risksta=$res['risksta'];
$summaryta=$res['summaryta'];
?>
我的整个mredit.php
:
<?php
// including the database connection file
include_once("db.php");
if(isset($_POST['update']))
{
$mrinsertid = mysqli_real_escape_string($connect,$_POST['mrinsertid']);
$releaseta= mysqli_real_escape_string($connect,$_POST['releaseta']);
$keyta= mysqli_real_escape_string($connect,$_POST['keyta']);
$programleadsta= mysqli_real_escape_string($connect,$_POST['programleadsta']);
$ccota= mysqli_real_escape_string($connect,$_POST['ccota']);
$nextmilestonesta= mysqli_real_escape_string($connect,$_POST['nextmilestonesta']);
$bugta= mysqli_real_escape_string($connect,$_POST['bugta']);
$risksta= mysqli_real_escape_string($connect,$_POST['risksta']);
$summaryta= mysqli_real_escape_string($connect,$_POST['summaryta']);
// checking empty fields
if(empty($releaseta) || empty($keyta) || empty($programleadsta)||empty($ccota) || empty($nextmilestonesta) || empty($bugta)|| empty($riskta) || empty($summaryta)) {
if(empty($releaseta)) {
echo "<font color='red'>release field is empty.</font><br/>";
}
if(empty($keyta)) {
echo "<font color='red'>Akey field is empty.</font><br/>";
}
if(empty($programleadsta)) {
echo "<font color='red'>program field is empty.</font><br/>";
}
if(empty($ccota)) {
echo "<font color='red'>cco field is empty.</font><br/>";
}
if(empty($nextmilestonesta)) {
echo "<font color='red'>nextmilestone field is empty.</font><br/>";
}
if(empty($bugta)) {
echo "<font color='red'>bug field is empty.</font><br/>";
}
if(empty($risksta)) {
echo "<font color='red'>risk field is empty.</font><br/>";
}
if(empty($summaryta)) {
echo "<font color='red'>summary field is empty.</font><br/>";
}
} else {
//updating the table
$result = mysqli_query($connect, "UPDATE mrinsert SET releaseta='$releaseta',keyta='$keyta',programleadsta='$programleadsta',ccota='$ccota',nextmilestonesta='$nextmilestonesta',bugta='$bugta',risksta='$risksta',summaryta='$summaryta' WHERE mrinsertid='$mrinsertid'");
//redirectig to the display page. In our case, it is index.php
header("Location: index.php");
}
}
?>
<?php
//getting id from url
$mrinsertid = $_GET['mrinsertid'];
//selecting data associated with this particular id
$result = mysqli_query($connect, "SELECT * FROM mrinsert WHERE mrinsertid=$mrinsertid");
while($res = mysqli_fetch_array($result))
{
$releaseta=$res['releaseta'];
$keyta=$res['keyta'];
$programleadsta=$res['programleadsta'];
$ccota=$res['ccota'];
$nextmilestonesta=$res['nextmilestonesta'];
$bugta=$res['bugta'];
$risksta=$res['risksta'];
$summaryta=$res['summaryta'];
?>
<html>
<head>
<title>Edit Data</title>
</head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.wrap {
position:relative;
width:50px;
}
.wrap button {
border:5px solid;
position:absolute;
top:50px;
border-color:black;
border-radius: 50%;
margin-left:20px;
display:block;
height: 50px;
width: 50px;
background-color:green;
}
</style>
<body>
<a href="index.php">Home</a>
<br/>
<form name="form1" method="post" action="mredit.php">
<input type="text" name="mrinsertid" value=<?php echo $_GET['mrinsertid'];?> >
<input type="submit" name="update" value="update">
<div id="MRtableDIV">
<table border="2">
<tr style="background-color:#80bfff">
<th style="width:8%"><center>Release</center></th>
<th style="width:5%"><center>Status</center></th>
<th style="width:6%"><center>Key</center></th>
<th style="width:15%"><center>Program Leads</center></th>
<th style="width:6%"><center>CCO Dates</center></th>
<th style="width:6%"><center>Next Milestones</center></th>
<th style="width:10%"><center>Bug Projection</center></th>
<th style="width:14%"><center>Risks</center></th>
<th style="width:20%"><center>Summary</center></th>
<tr>
<tr>
<tr>
<td><textarea name="releaseta" id="ReleaseTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff""><?php echo $res['releaseta'];?></textarea></td>
<td>
<div class="wrap">
<button id="button1" value = "button" style= "color:white" onclick="setColor('button1', '#101010')";></button>
</div>
<textarea name="" id="StatusTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"></textarea>
</td>
<td><textarea name="keyta" id="KeyTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"><?php echo $res['keyta'];?></textarea></td>
<td><textarea name="programleadsta" id="ProgramLeadsTA" style="width:100%;height:200px;;resize:none;background-color:#e6f2ff"><?php echo $res['programleadsta'];?></textarea></td>
<td><textarea name="ccota" id="CCOTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"><?php echo $res['ccota'];?></textarea></td>
<td><textarea name="nextmilestonesta" id="NextMilestonesTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"><?php echo $res['nextmilestonesta'];?></textarea></td>
<td><textarea name="bugta" id="BugTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"><?php echo $res['bugta'];?></textarea></td>
<td><textarea name="risksta" id="RisksTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"><?php echo $res['risksta'];?></textarea></td>
<td><textarea name="summaryta" id="SummaryTA" style="width:100%;height:200px;resize:none;background-color:#e6f2ff"><?php echo $res['summaryta'];?></textarea></td>
</tr>
</tr>
</table>
</div>
</form>
</body>
</html>
<?php
}
?>
最佳答案
试试这个
我只是删除了 { }
并直接添加了 ".$_SESSION['user_id'];
并将查询存储在名为 的变量中$结果1
。
$result1 = "SELECT * FROM mrinsert WHERE user_id=".$_SESSION['user_id'];
$result = mysqli_query($conn, $result1);
if (mysqli_num_rows($result) > 0) {
// output data of each row
while($res = mysqli_fetch_array($result)){
echo "<tr>";
echo "<td>".$res['bugta']."</td>";
echo "<td>".$res['releaseta']."</td>";
echo "<td>".$res['ccota']."</td>";
echo "<td><a href='mredit.php?mrinsertid=".$res['mrinsertid']."'>Edit</a></td>";
}
}
else {
echo "0 results";
}
mysqli_close($conn);
mredit.php
echo $mrinsertid = $_GET['mrinsertid'];
关于php - 显示更新值时,$_GET 返回未定义索引错误,但在正常重定向时 $_GET 方法给出正确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47484894/
我正在尝试使用谷歌浏览器的 Trace Event Profiling Tool分析我正在运行的 Node.js 应用程序。选择点样本后,我可以在三种 View 之间进行选择: 自上而下(树) 自上而
对于一个可能是菜鸟的问题,我们深表歉意,但尽管在 SO 上研究了大量教程和其他问题,但仍找不到答案。 我想做的很简单:显示一个包含大量数据库存储字符串的 Android ListView。我所说的“很
我已经开始了一个新元素的工作,并决定给 Foundation 5 一个 bash,看看它是什么样的。在创建带有水平字段的表单时,我在文档中注意到的第一件事是它们使用大量 div 来设置样式。所以我在下
我有一个 Windows 窗体用户控件,其中包含一个使用 BeginInvoke 委托(delegate)调用从单独线程更新的第 3 方图像显示控件。 在繁重的 CPU 负载下,UI 会锁定。当我附加
我有一堆严重依赖dom元素的JS代码。我目前使用的测试解决方案依赖于 Selenium ,但 AFAIK 无法正确评估 js 错误(addScript 错误不会导致您的测试失败,而 getEval 会
我正在制作一款基于滚动 2D map /图 block 的游戏。每个图 block (存储为图 block [21][11] - 每个 map 总共 231 个图 block )最多可以包含 21 个
考虑到以下情况,我是前端初学者: 某个 HTML 页面应该包含一个沉重的图像(例如 - 动画 gif),但我不想强制客户缓慢地等待它完全下载才能享受一个漂亮的页面,而是我更愿意给他看一个轻量级图像(例
我正在设计一个小软件,其中包括: 在互联网上获取资源, 一些用户交互(资源的快速编辑), 一些处理。 我想使用许多资源(它们都列在列表中)来这样做。每个都独立于其他。由于编辑部分很累,我想让用户(可能
我想比较两个理论场景。为了问题的目的,我简化了案例。但基本上它是您典型的生产者消费者场景。 (我关注的是消费者)。 我有一个很大的Queue dataQueue我必须将其传输给多个客户端。 那么让我们
我有一个二元分类问题,标签 0 和 1(少数)存在巨大不平衡。由于测试集带有标签 1 的行太少,因此我将训练测试设置为至少 70-30 或 60-40,因此仍然有重要的观察结果。由于我没有过多地衡量准
我是一名优秀的程序员,十分优秀!