欢迎访问 舍力博客(www.shuyong.net)
<div id="post_button">这段代码的上方加如下代码
<div style="margin-top:3px;"> 文章访问密码:<input type="text" value="" name="password" id="password" style="width:80px;" /></div>第二步:在根目录文件admin/views/edit_page.php中的
<div id="post_button">这段代码的上方加如下代码
<div style="margin-top:3px;"> 文章访问密码:<input type="text" value="<?php echo $password; ?>" name="password" id="password" style="width:80px;" /></div>第三步:在根目录文件admin/page.php中
$allow_remark = isset($_POST['allow_remark']) ? addslashes(trim($_POST['allow_remark'])) : 'n';这段代码的下方加如下代码
$password = isset($_POST['password']) ? addslashes(trim($_POST['password'])) : '';同样是根目录文件admin/page.php中
'template' => $template,这段代码的下方加如下代码
'password' => $password,
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>emlog message</title>
<style type="text/css">
<!--
body{background-color:#F7F7F7;font-family: Arial;font-size: 12px;line-height:150%;}
.main{background-color:#FFFFFF;margin-top:20px;font-size: 12px;color: #666666;width:580px;margin:10px 200px;padding:10px;list-style:none;border:#DFDFDF 1px solid;}
-->
</style>
</head>
<body>
<div class="main">
<form action="" method="post">
请输入该文章的访问密码<br>
<input type="password" name="logpwd" /><input type="submit" value="进入.." />
<br /><br /><a href="$url">«返回首页</a>
</form>
</div>
</body>
</html>
var pageurl = $.trim($("#url").val()); 下面加入代码:var password = $.trim($("#password").val()); //新加代码 +"&url="+pageurl 下面加入代码:+"&password="+password //新加代码
留言/评论:◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。