1-6留言板,请问confirm作为条件该怎么写?

1-6留言板,请问confirm作为条件该怎么写?

<?php

date_default_timezone_set("PRC");

header('content_type:text/html;charset=utf-8');

//msg.txt是提交后的信息,是序列化后的

$filename="msg.txt";

$msgs=[];

//检测文件是否存在

if (file_exists($filename)){

    //读取文件中的内容

    $string=file_get_contents($filename);

    if (strlen($string)>0){

        $msgs=unserialize($string);

    }

}

//检测用户是否点击了提交按钮

if (isset($_POST['pubMsg'])){

    $username=$_POST['username'];

    $title=strip_tags($_POST['title']);

    $content=strip_tags($_POST['content']);

    $time=time();

    //将其组成关联数组

    $data=compact('username','title','content','time');

    array_push($msgs,$data);

    $msgs=serialize($msgs);

    //将数组写进$filename,如果成功回到第八行代码读取msg.txt文件内容赋值给数组,然后往下遍历出来;

    if(file_put_contents($filename,$msgs)){

        echo "<script>alert('留言成功!');location.href='liuyanban.php';</script>";

    }else{

        echo "<script>alert('留言失败!');location.href='liuyanban.php';</script>";

    }

}

/*

 $msgs=[

    [...],

    [...]

];

file_get_content($filename):得到文件中的内容,返回的是字符串

file_put_contents($filename,$data):向指定文件写内容;如果文件不存在会创建

serialize($str):序列化字符串

unserialize($str):反序列化字符串

 */

?>

<!DOCTYPE html>

<html>

<head>

    <script type="text/javascript" src="http://www.francescomalagrino.com/BootstrapPageGenerator/3/js/jquery-2.0.0.min.js"></script>

    <script type="text/javascript" src="http://www.francescomalagrino.com/BootstrapPageGenerator/3/js/jquery-ui"></script>

    <link href="http://www.francescomalagrino.com/BootstrapPageGenerator/3/css/bootstrap-combined.min.css" rel="stylesheet" media="screen">

    <script type="text/javascript" src="http://www.francescomalagrino.com/BootstrapPageGenerator/3/js/bootstrap.min.js"></script>

</head>

<body>

<div class="container-fluid">

    <div class="row-fluid">

        <div class="span12">

            <div class="page-header">

                <h1>

                    IMOOC-v1.0

                </h1>

            </div>

            <div class="hero-unit">

                <h1>

                    Hello, world!

                </h1>

                <p>

                    这是一个可视化布局模板, 你可以点击模板里的文字进行修改, 也可以通过点击弹出的编辑框进行富文本修改. 拖动区块能实现排序.

                </p>

                <p>

                    <a rel="nofollow" class="btn btn-primary btn-large" href="#">参看更多 »</a>

                </p>

            </div>

            <?php

            if (is_array($msgs)&&count($msgs)>0):

                ?>

            <table class="table">

                <thead>

                <tr>

                    <th>

                        编号

                    </th>

                    <th>

                        用户名

                    </th>

                    <th>

                        标题

                    </th>

                    <th>

                        时间

                    </th>

                    <th>

                        内容

                    </th>

                    <th>

                        操作

                    </th>

                </tr>

                </thead>

                <tbody>

                <?php

                $i=1;

                foreach ( $msgs as $key=>$v):

                ?>

                    <tr class="success">

                        <td><?php echo $i++; ?></td>

                        <td><?php echo $v['username'];?></td>

                        <td><?php echo $v['title'];?></td>

                        <td><?php echo date('Y-m-d H:i:s',$v['time']);?></td>

                        <td><?php echo $v['content'];?></td>

                        <!-- get传参的格式是问号后面跟get传参名称和值,在edit.php中接收; -->

                        <td><a href="edit.php?id=<?php echo $key;?>" name="edit">编辑</a></td>

                        <td><a href="delete.php?id=<?php echo $key;?>" name="delete">删除</a></td>

                    </tr>

                <?php

                endforeach;

                ?>

                </tbody>

            </table>

            <?php

            endif;

            ?>

            <button><a href="add.php">我要留言</a></button>

        </div>

    </div>

</div>

</body>

</html>

-----------------删除

<?php

$filename="msg.txt";

$msgs=[];

//检测文件是否存在

if (isset($filename)) {

$string=file_get_contents($filename);

// 将文件赋值给数组

if (strlen($string)>0) {

$msgs=unserialize($string);

}

}

$deletekey=$_Get['id'];

$delete=$msgs[$deletekey];

if ( echo"<script> confirm('确认删除吗?')</script>") {

unset($delete);

echo "<script>alert('删除成功!' location.href='liuyanbgan.php')</script>";

}else{

echo "<script>alert('删除失败!' location.href='liuyanbgan.php')</script>";

}

--------------------------------删除

<?php

$filename="msg.txt";

$msgs=[];

//检测文件是否存在

if (isset($filename)) {

$string=file_get_contents($filename);

// 将文件赋值给数组

if (strlen($string)>0) {

$msgs=unserialize($string);

          }

}

$deletekey=$_Get['id'];

$delete=$msgs[$deletekey];

if ( echo"<script> confirm('确认删除吗?')</script>") {

unset($delete);

        $msgs=serialize($msgs);

        file_put_contents($filename, $msgs);

echo "<script>alert('删除成功!' location.href='liuyanbgan.php')</script>";

}else{

echo "<script>alert('删除失败!' location.href='liuyanbgan.php')</script>";

}


正在回答

登陆购买课程后可参与讨论,去登陆

1回答

您好,1.接收get传参应该是使用$_GET,注意大小写。

2.删除时,应该将内容删除之后,文件内容也是需要更改的,即应该使用unset删除$msgs数组中对应的数据,并将其序列化,再次写入文件中。

3.可以将js内容写在HTML中,返回值为true进行删除操作。

<?php
$filename="msg.txt";
$msgs=[];
//检测文件是否存在
if (isset($filename)) {
 $string=file_get_contents($filename);
// 将文件赋值给数组
 if (strlen($string)>0) {
 $msgs=unserialize($string);
 }
}
$deletekey=$_GET['id'];
?>
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
 content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <script>
 var flag = confirm('确认删除吗?');
 if(flag == true){
            <?php
                unset($msgs[$deletekey]);
 $msgs = serialize($msgs);
 if(file_put_contents($filename,$msgs)){
 ?>
 alert('删除成功!');
 <?php
 }else{
 ?>
 alert('删除失败!');
 <?php
 }
 ?>
 }else{
            alert('取消删除!');
 }
    </script>
</body>
</html>

祝学习愉快!

  • 慕田峪3102890 提问者 #1
    <?php $filename="msg.txt"; $msgs= []; //检测文件是否存在 if (isset($filename)) { $string=file_get_contents($filename); // 将文件赋值给数组 if (strlen($string)>0) { $msgs=unserialize($string); } } $deletekey=$_GET['id']; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> var flag = confirm('确认删除吗?'); if (flag==true) { <?php unset($msgs[$deletekey]); $msgs=serialize($msgs); if (file_put_content($filename,$msgs)) { ?> alert('删除成功'); <?php }else{ ?> alert('删除失败'); <?php } ?> }else{ alert('取消删除'); } </script> </body> 您帮我看看这里哪写错了,我找了好久
    2019-03-15 15:27:56
  • 好帮手慕查理 回复 提问者 慕田峪3102890 #2
    您好,file_put_content拼写错误,应该是file_put_contents。另关于代码建议同学在回答中贴出,回复中贴代码没有格式,如果存在注释会导致不能辨认哪些是注释的内容哦~祝学习愉快!
    2019-03-15 15:50:32
  • 慕田峪3102890 提问者 回复 好帮手慕查理 #3
    好的,我发现一个问题,点击取消删除还是把代码删了,麻烦看看
    2019-03-15 16:00:15
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
PHP小白零基础入门
  • 参与学习           人
  • 提交作业       626    份
  • 解答问题       4930    个

想要学好Web后端开发的中流砥柱语言,本阶段为你轻松铺就扎实的基础,从前端网页布局的搭建到后台PHP开发,助你从零基础到掌握主流开发语言。

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师