当前位置: 编程技术>php
本页文章导读:
▪php读取javascript设置的cookies的代码
下面给代码: 代码如下: <script language="JavaScript" type="text/javascript"> function setmycookie(name) //主要里面的参数 { $name = "thename"; $namev = test.num.value; var date = new Date(); $livetime = 5*24*3600*1000; date.setT.........
▪php将数据库中所有内容生成静态html文档的代码
代码如下: <?php /* author:www.5dkx.com done:生成html文档 date:2009-10-27 */ require_once("conn.php"); if($_GET['all']) { /*获取数据库记录,以便于生成html文件有个文件名*/ $sqlquery = "select * from $tbname"; $result = m.........
▪php Smarty模板生成html文档的方法
下面直接发代码 代码如下: <?php /* file:config_smarty.php done:配置Smarty author:www.5dkx.com date:2009-12-21 */ include_once("../libs/smarty.class.php"); class MySmarty extends Smarty{ function __construct() { $this->Smarty(); $t.........
[1]php读取javascript设置的cookies的代码
来源: 互联网 发布时间: 2013-11-30
下面给代码:
<script language="JavaScript" type="text/javascript">
function setmycookie(name) //主要里面的参数
{
$name = "thename";
$namev = test.num.value;
var date = new Date();
$livetime = 5*24*3600*1000;
date.setTime(date.getTime()+$livetime);
document.cookie =name+"="+$namev+";expires="+date.toGMTString();
document.cookie = "uername=sasas;expires="+date.toGMTString();
</script>
使用的话就是这样样子的用法
setmycookie('name');这样就在该域名下设置了一个名为name的cookies
用php读取的话更简单。
<?php
$str = $_COOKIE('name');//里面的参数就是上面设置的那个名字
?>
转载自 5D开心博客
下面是相关的一些补充知识,深入的朋友可以参考下。
设置和读取cookie的javascript代码
鉴于我们没有发现比较好的对于js cookies的操作函数代码集合,更好的内容可以参考下一篇文章。
代码如下:
<script language="JavaScript" type="text/javascript">
function setmycookie(name) //主要里面的参数
{
$name = "thename";
$namev = test.num.value;
var date = new Date();
$livetime = 5*24*3600*1000;
date.setTime(date.getTime()+$livetime);
document.cookie =name+"="+$namev+";expires="+date.toGMTString();
document.cookie = "uername=sasas;expires="+date.toGMTString();
</script>
使用的话就是这样样子的用法
setmycookie('name');这样就在该域名下设置了一个名为name的cookies
用php读取的话更简单。
代码如下:
<?php
$str = $_COOKIE('name');//里面的参数就是上面设置的那个名字
?>
转载自 5D开心博客
下面是相关的一些补充知识,深入的朋友可以参考下。
设置和读取cookie的javascript代码
鉴于我们没有发现比较好的对于js cookies的操作函数代码集合,更好的内容可以参考下一篇文章。
[2]php将数据库中所有内容生成静态html文档的代码
来源: 互联网 发布时间: 2013-11-30
代码如下:
<?php
/*
author:www.5dkx.com
done:生成html文档
date:2009-10-27
*/
require_once("conn.php");
if($_GET['all'])
{
/*获取数据库记录,以便于生成html文件有个文件名*/
$sqlquery = "select * from $tbname";
$result = mysql_query($sqlquery,$conn)or die("查询失败!");
$fp = fopen("./template/article.html",r);
$fpcontent = fread($fp,filesize("./template/article.html"));
fclose($fp);
/*写入文件*/
while($row = mysql_fetch_array($result))
{
$fpcontent = str_replace("{thetitle}",$row['title'],$fpcontent);
$fpcontent = str_replace("{chatitle}",$row['title'],$fpcontent);
$fpcontent = str_replace("{bookcontent}",$row['content'],$fpcontent);
$fp = fopen("./html/".$row['id'].".html",w)or die("打开写入文件失败!");
fwrite($fp,$fpcontent)or die("写入文件失败!");
}
echo "<script language=\"javascript\">alert('全部更新');</script>";
}
if($_GET['part'])
{
/*获取最后一条记录的ID,以便于生成html文件有个文件名*/
$sqlquery = "select * from $tbname order by id desc limit 1";
$result = mysql_query($sqlquery,$conn)or die("查询失败!");
$row = mysql_fetch_array($result);
$fp = fopen("./template/article.html",r);
$fpcontent = fread($fp,filesize("./template/article.html"));
fclose($fp);
$fpcontent = str_replace("{thetitle}",$row['title'],$fpcontent);
$fpcontent = str_replace("{chatitle}",$row['title'],$fpcontent);
$fpcontent = str_replace("{bookcontent}",$row['content'],$fpcontent);
$fp = fopen("./html/".$row['id'].".html",w)or die("打开写入文件失败!");
fwrite($fp,$fpcontent)or die("写入文件失败!");
echo "<script language=\"javascript\">alert('部分更新成功!');</script>";
}
?>
<html>
<head>
<title>生成html文档</title>
<script language="javascript">
function btnsubmit(form)
{
theform.submit();
}
</script>
</head>
<body>
<?
echo "<a href=/blog_article/all/111/gt;全部更新/lt;/a/gt;/lt;br/gt;/lt;a.html href=/blog_article/part/111/gt;部分更新/lt;/a/gt;.html";
?>
</body>
</html>
[3]php Smarty模板生成html文档的方法
来源: 互联网 发布时间: 2013-11-30
下面直接发代码
<?php
/*
file:config_smarty.php
done:配置Smarty
author:www.5dkx.com
date:2009-12-21
*/
include_once("../libs/smarty.class.php");
class MySmarty extends Smarty{
function __construct()
{
$this->Smarty();
$this->config_dir = "../config";
$this->cache_dir = "../cache";
$this->template_dir = "../template";
$this->compile_dir = "../template_c";
$this->cache = false;
}
}
$smart = new MySmarty();
$smart->assign("title","标题");
$smart->assign("content","内容");
$smart->display('article.tpl');
$output = $smart->fetch('article.tpl');
$Path = "../html/1.html";
$fp = fopen($Path,"w");
fwrite($fp,$output);
fclose($fp);
?>
代码如下:
<?php
/*
file:config_smarty.php
done:配置Smarty
author:www.5dkx.com
date:2009-12-21
*/
include_once("../libs/smarty.class.php");
class MySmarty extends Smarty{
function __construct()
{
$this->Smarty();
$this->config_dir = "../config";
$this->cache_dir = "../cache";
$this->template_dir = "../template";
$this->compile_dir = "../template_c";
$this->cache = false;
}
}
$smart = new MySmarty();
$smart->assign("title","标题");
$smart->assign("content","内容");
$smart->display('article.tpl');
$output = $smart->fetch('article.tpl');
$Path = "../html/1.html";
$fp = fopen($Path,"w");
fwrite($fp,$output);
fclose($fp);
?>
最新技术文章: