Time of Update: 2018-12-08
兩個簡單模板:複製代碼 代碼如下:<html> <head> <title>{title}</title> </head> <body> <font color=red size=6><center>{title}</center></font> <hr> <pre>{body}</pre> </body>
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php require_once("Auth/HTTP.php"); //設定資料庫的串連選項 $auth_options=array( 'dsn'=>"mysql://root:1981427@localhost/test", //資料庫連接字串 'table'=>"tablename1", //表名 'usernamecol'=>"username", //用於儲存使用者名稱的列 'passwordcol'=>"password", //
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php include("adodb/adodb.inc.php"); //包含adodb類庫檔案 $conn = NewADOConnection('mysql'); //串連資料庫 $conn -> Connect('localhost', 'root', '1981427', 'test'); $conn -> Execute("insert into tablename1 values('9','zhuzhao', 'Simon')");
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php require_once "DB.php"; //包含類庫檔案 $conn = DB::connect("mysql://root:1981427@localhost/test"); //串連資料庫 if (!DB::isError($conn)) { //判斷是否串連成功 print "資料庫連接成功"; } else { echo "資料庫連接失敗!"; } ?>複製代碼 代碼如下:<?php require_once "DB.php"; $
Time of Update: 2018-12-08
安裝完基本套件後,當開發人員需要使用基本套件以外的其他套件時,會需要安裝套件,若不需要某個套件時,就會想要移除套件,若套件版本過於老舊,則需要升級套件,也就是說開發人員需要一套PEAR套件的管理系統。 在Windows作業系統下的套件安裝與管理可以有兩種方式,一種是使用Web的管理介面,另一種足使用「套件指令」。筆者較為推薦後者,因為執行的速度較快,但若您對指令有畏懼感,也可以用第一種來輕鬆管理套件。 用web介面管理套件
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php include("adodb/adodb.inc.php"); //包含adodb類庫檔案 $conn = NewADOConnection('postgres'); $conn->Connect('localhost', 'root', 'pass', 'mydb'); //串連PostgreSQL資料庫 ?> 複製代碼 代碼如下:<?php include("adodb/adodb.inc.php"); //包含adodb類庫檔案
Time of Update: 2018-12-08
example.xml檔案:複製代碼 代碼如下:<?php $xml = simplexml_load_file('example.xml'); //建立SimpleXML對象 print_r($xml); //輸出XML ?> 複製代碼 代碼如下:<?xml version='1.0'?> <departs> <depart> <name>production support</name>
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php /** * 功能: 根據條件建立分類緩衝減少類別使用 * 建立日期:Thu May 31 15:55:11 CST 2007 * 最後更新: * 作者: sanshi <sanshi0815@tom.com> */ class treeCache { var $tableName = "index_category"; //表名 var $where = "1"; //where條件 var $pidStr ="i_c_pid"; //pid
Time of Update: 2018-12-08
以下內容僅摘錄部分:如果由我們來設計主題表和回帖表,通常的做法是如下。 這樣在擷取主題列表時,直接使用分頁演算法提取Topics;查看某一文章時,還需要對Topics,Posts進行jion連結。 此種設計的缺陷為: 1. Topics表格儲存體Content的內容,其體積將會很大,對大體積表進行分頁,效能很慢。 2. 顯示Posts內容時將進行join操作,損耗效能 而Discuz的做法是進行如下設計。
Time of Update: 2018-12-08
複製代碼 代碼如下:<? //採集首頁地址 $url="http://emotion.pclady.com.cn/skills/"; //擷取頁面代碼 $rs=file_get_contents($url); //設定匹配正則 //$fp=fopen("text.txt","a"); //$fw=fwrite($fp,$rs); //fclose($fp); /*<I class=titles><A
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php @mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器 or die("資料庫伺服器串連失敗"); @mysql_select_db("test") //選擇資料庫mydb or die("資料庫不存在或不可用"); $query = @mysql_query("select * from tablename1") //執行SQL語句 or die("SQL語句執行失敗");
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php @mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器 or die("資料庫伺服器串連失敗"); @mysql_select_db("test") //選擇資料庫mydb or die("資料庫不存在或不可用"); $query = @mysql_query("select * from tablename1") //執行SQL語句 or die("SQL語句執行失敗"); ?&
Time of Update: 2018-12-08
複製代碼 代碼如下:<html> <head> <title>Login</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> </head> <body> <form name="form1" method="post" action="login.php"> <table width="300
Time of Update: 2018-12-08
user-define-session-inc.php檔案代碼:複製代碼 代碼如下:<?php function mysession_open($save_path, $session_name) { @mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器 or die("資料庫伺服器串連失敗"); @mysql_select_db("test") //選擇資料庫mydb or die("資料庫不存在或不可用")
Time of Update: 2018-12-08
<?php $filename = "D:\\296.mid"; $file = fopen($filename, "rb"); $bin = fread($file, 2); //唯讀2位元組 fclose($file); $strInfo = @unpack("c2chars", $bin); $typeCode = intval($strInfo['chars1'].$strInfo['chars2']); $fileType = ''; switch ($typeCode) {
Time of Update: 2018-12-08
複製代碼 代碼如下:<?php $path = "D:\\in.txt"; try //檢測異常 { file_open($path); } catch(Exception $e) //捕獲異常 { echo $e->getMessage(); } function file_open($path) { if(!file_exists($path)) //如果檔案無法找到,拋出異常對象 { throw new Exception("檔案無法找到", 1); } if(!fopen($
Time of Update: 2018-12-08
複製代碼 代碼如下:<html> <head> <title>Form</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> </head> <body> <form action="post.php" method="get" name="form1"> <table width="271"
Time of Update: 2018-12-08
複製代碼 代碼如下:// multiple recipients $to = 'aidan@example.com' . ', '; // note the comma $to .= 'wez@example.com'; // subject $subject = 'Birthday Reminders for August'; // message $message = ' <html> <head> <title>Birthday Reminders
Time of Update: 2018-12-08
複製代碼 代碼如下:<html> <head> </head> <body> <table width="400" border="0" cellspacing="1" cellpadding="1"> <tr> <td bgcolor="000000"> <table width="400" border="0" cellspacing="0" cellpadding="1"> <tr>
Time of Update: 2018-12-08
複製代碼 代碼如下:<html> <head> <title>Form</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <script language="javascript" src="form.js" src="form.js"></script> </head> <body>