php生成html文件

摘要: $val){ $title = $val[0]; $content = $val[1]; $path = $id.".html";$fp = fopen("tem.html","r");//只读打开模板$str = fread($fp,filesize("tem.html"));//读取模板内容$s... 阅读全文
posted @ 2015-06-24 22:51 亨通K 阅读(368) 评论(0) 推荐(0) 编辑

简单的类php和mysql

摘要: host = $host; $this->name = $name; $this->pass = $pass; $this->table = $table; $this->ut = $ut; $this->connect(); } //建立连接数据库的函数 function... 阅读全文
posted @ 2015-06-16 23:35 亨通K 阅读(180) 评论(0) 推荐(0) 编辑

有关php链接MySql数据库的总结

摘要: 链接数据库的语句:$conn = @ mysql_connect("localhost", "root", "") or die("数据库链接错误");mysql_select_db("laok", $conn);mysql_query("set names 'GBK'"); //使用GBK中文编码... 阅读全文
posted @ 2015-06-15 13:35 亨通K 阅读(155) 评论(0) 推荐(0) 编辑