-3
所以,當我選擇批准或拒絕按鈕,所有的四行,然後點擊提交按鈕,那麼它應該更新我的數據庫列的地位,批准或拒絕複選框來更新我的所有行的特定列數據庫按選擇,並根據作業名稱,並在我的表所需的工作,我在PHP請幫助一個新手...使用上點擊提交按鈕
數據庫 - >projectdb
表 - >jobdetails
no(AI)|jobname|desiredjob|jobexpectations|req1|req2|req3|req4|req5|status.
PHP
<?php
//connect to the server
$link = mysql_connect('localhost', 'guest', 'guest');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
//connect to the database
mysql_select_db('projectdb');
//query the database
$query = mysql_query("SELECT * FROM jobdetails WHERE status='In Progress...'");
//fetch the results/convert results into an array
$jobname=array();
$desiredjob=array();
$jobexpectations=array();
$req1=array();
$req2=array();
$req3=array();
$req4=array();
$req5=array();
WHILE($rows = mysql_fetch_assoc($query)){
$jobname[] = $rows['jobname'];
$desiredjob[] = $rows['desiredjob'];
$jobexpectations[] = $rows['jobexpectations'];
$req1[] = $rows['req1'];
$req2[] = $rows['req2'];
$req3[] = $rows['req3'];
$req4[] = $rows['req4'];
$req5[] = $rows['req5'];
}
?>
<form method="post" action="">
<tr id="1">
<td class="type-info" style="width:10%"><?=$jobname[0]?><a class="anchorjs-link" href="#h3.-bootstrap-heading"><span class="anchorjs-icon"></span></a></td>
<td class="type-info" style="width:10%"><?=$desiredjob[0]?><br></br></td>
<td class="type-info" style="width:35%"><?=$jobexpectations[0]?><br></br></td>
<td class="type-info" style="width:35%"><ul><li><?=$req1[0]?></li><li><?=$req2[0]?></li><li><?=$req3[0]?></li><li><?=$req4[0]?></li><li><?=$req5[0]?></li></ul><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Approved" id="status"> Approve</label></div><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Denied" id = "status"> Deny</label></div><br></br></td>
</tr>
<tr id ="2">
<td class="type-info" style="width:10%"><?=$jobname[1]?><a class="anchorjs-link" href="#h3.-bootstrap-heading"><span class="anchorjs-icon"></span></a></td>
<td class="type-info" style="width:10%"><?=$desiredjob[1]?><br></br></td>
<td class="type-info" style="width:35%"><?=$jobexpectations[1]?><br></br></td>
<td class="type-info" style="width:35%"><ul><li><?=$req1[1]?></li><li><?=$req2[1]?></li><li><?=$req3[1]?></li><li><?=$req4[1]?></li><li><?=$req5[1]?></li></ul><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Approved" name="status" id="status"> Approve</label></div><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Denied" name="status" id = "status"> Deny</label></div><br></br></td>
</tr>
<tr id="3">
<td class="type-info" style="width:10%"><?=$jobname[2]?><a class="anchorjs-link" href="#h3.-bootstrap-heading"><span class="anchorjs-icon"></span></a></td>
<td class="type-info" style="width:10%"><?=$desiredjob[2]?><br></br></td>
<td class="type-info" style="width:35%"><?=$jobexpectations[2]?><br></br></td>
<td class="type-info" style="width:35%"><ul><li><?=$req1[2]?></li><li><?=$req2[2]?></li><li><?=$req3[2]?></li><li><?=$req4[2]?></li><li><?=$req5[2]?></li></ul><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Approved" id="status"> Approve</label></div><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Denied" id = "status"> Deny</label></div><br></br></td>
</tr>
<tr id="4">
<td class="type-info"><?=$jobname[3]?><a class="anchorjs-link" href="#h3.-bootstrap-heading"><span class="anchorjs-icon"></span></a></td>
<td class="type-info"><?=$desiredjob[3]?><br></br></td>
<td class="type-info"><?=$jobexpectations[3]?><br></br></td>
<td class="type-info"><ul><li><?=$req1[3]?></li><li><?=$req2[3]?></li><li><?=$req3[3]?></li><li><?=$req4[3]?></li><li><?=$req5[3]?></li></ul><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Approved" id="status"> Approve</label></div><br></br></td>
<td class="type-info" style="width:5%"><input type="checkbox" value="Denied" id = "status"> Deny</label></div><br></br></td>
<td class="type-info" style="width:5%"><button type="submit" name="submit" class="styled-button-2" onClick="myFunction()" value="submit">Confirm</button></td>
</td>
</tr>
</body>
</table>
*問題不清楚* –
而且,如果你選擇'Approved'&'Denied'複選框一起該特定行。 ? *問題是不清楚的* –
只有一個應該選擇,請幫助我,我卡住了 –