0

我有这段代码,它显示在用户的日志页面上。他们可以添加一个条目,并且一旦条目出现在页面上,他们就可以选择删除它。

生病显示带有一些注释的代码,然后解释问题。

// 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 作为触发器的原因是为了在有人询问时弹出确认窗口。

无论如何,非常感谢您阅读本文!

4

3 回答 3

0
 <input type=\'hidden\' name=\'delete_id[]\' value=\''.$row['id'].'\' />

那么只有你会在发布时将所有值作为数组获取。

于 2012-10-22T09:36:47.087 回答
0
 <input type=\'hidden\' name=\'delete_id[]\' value=\''.$row['id'].'\' />

那么只有你会在发布时将所有值作为数组获取。在服务器端你应该使用

$delete_values= implode (',',$_POST['delete_id']);
于 2012-10-22T09:40:30.457 回答
0

找到了解决方案。

我已将表格更改为

<form method="POST" id="deljournal_'.$row['id'].'">
    <input type=\'hidden\' name=\'delete_id\' value=\''.$row['id'].'\' />
</form>
<button type="button" class="button" name="delete" value="Delete" onClick="delete_journal_'.$row['id'].'()" />Delete</button>

通过将日记帐分录 ID 添加到表单的 ID 和 onClick 函数中。javascript 就在表格单元格之外,如下所示:

<script type="text/javascript">
    function delete_journal_'.$row['id'].'() {
        var answer = confirm("Are you sure you want to delete this journal entry?")
        if (answer){
            $("#deljournal_'.$row['id'].'").submit()
        }
    }
</script>

其中条目 ID 已添加到函数名称和表单 ID 标签中。通过将 Javascript 放入 while 循环而不是外部文件中,可以使用循环对其进行操作以具有相同的值。

它有点混乱,会稍微增加加载时间+执行时间,但这是我能找到的最快的方法。

希望这对遇到类似问题的其他人有所帮助。

于 2012-10-23T09:49:39.880 回答