我有这段代码,它显示在用户的日志页面上。他们可以添加一个条目,并且一旦条目出现在页面上,他们就可以选择删除它。
生病显示带有一些注释的代码,然后解释问题。
// Figures out how many recent posts to display
$posts = $config_journalposts + 1;
if($noposts!=1) {
// Gets the data from the query
while(($row = mysql_fetch_array($journalquery)) && ($posts > 1)) {
// For each of the posts that were gathered, display the following:
echo '<table border="0" width="100%">
<tr>
<td colspan="2" style="vertical-align:bottom;">
// Display the title as a link to be used as a permalink
<a href="?id='.$row['id'].'"><p class="fontheader">'.$row['title'].'</p></a>
</td>
</tr>
<tr>
// Show the o-so-important content
<td width="100%" style="vertical-align:top;padding-left:10px;">
'.$row['content'].'
</td>
</tr>
<tr>
// Show the date
<td style="font-size:8pt;padding-top:10px;">'.$row['date_day'].'/'.$row['date_month'].'/'.$row['date_year'].'</td>';
// Checks if the current user is the owner of the journal or an admin
if($_SESSION['user']==$pageowner || $_SESSION['user_rank']=='Admin') {
echo '<td align="right">
// FOCUS POINT
<form method="POST" id="deljournal">
<input type=\'hidden\' name=\'delete_id\' value=\''.$row['id'].'\' />
// A delete button that executes a bit of Javascript
<button type="button" class="button" name="delete" value="Delete" onClick="delete_journal()" />Delete</button>
</form>
// END FOCUS POINT
</td>';
}
echo '</tr>
</table>
<hr>
';
$posts --;
}
这是按下按钮时触发的 Javascript
function delete_journal() {
var answer = confirm("Are you sure you want to delete this journal entry?")
if (answer){
// Submits the form
$("#deljournal").submit()
}
}
这个 javascript 在上面的 PHP 代码中触发论坛,它重新加载页面并在页面的最顶部,在标记之前触发它
if(($_POST['delete_id'])) {
// Gets the post ID from the hidden forum tag
$deleteid = addslashes(strip_tags($_POST['delete_id']));
// Deletes the row that has the ID of the hidden form
mysql_query("DELETE FROM `gamezoid_accounts`.`journal_$pageowner` WHERE `id`='$deleteid'");
}
现在,对于问题。在 while 循环中,这种形式会一遍又一遍地重复。发生的情况是,在按下删除按钮时,它会触发 ID 为“deljournal”的表单。由于它们都有 ID“deljournal”,因此它会在页面顶部显示 ID。尝试将帖子 ID 嵌入到表单 ID 中会破坏代码,因为 mysql_query 不知道删除功能首先已被触发。
有什么办法吗?
我使用 Javascript 作为触发器的原因是为了在有人询问时弹出确认窗口。
无论如何,非常感谢您阅读本文!