Time of Update: 2014-09-17
標籤:io os ar for 檔案 資料 art sp cti 其實搜尋功能的設計很簡單,幾行代碼就可以完成。下面是form表單。
Time of Update: 2014-09-16
標籤:php mysql libmysqlclient.so 解決方案:1、進入mysql安裝目錄查看,確認有libmysqlclient.so.16.0.0 檔案, 於是需要在/usr/lib目錄下建立一個軟連結來指向libmysqlclient.so.162、在php lib目錄下下建立個軟連結:(格式為:ln -s mysql lib路徑 php lib路徑)ln -s
Time of Update: 2014-09-10
標籤:des http os io 使用 ar strong for 檔案 一、配置防火牆,開啟80連接埠、3306連接埠CentOS
Time of Update: 2014-09-10
標籤:style blog http color os io ar strong for 一、介紹SSDB的PHP
Time of Update: 2014-09-02
標籤:mysql csv php 資料表 匯出資料 PHP將資料庫內容轉化為csv檔案,以逗號隔開,為防止資料庫內容中含有逗號,影響檔案內容顯示,需注意添加““(雙引號)!!!<?phpinclude
Time of Update: 2014-09-01
標籤:os io ar 資料 div cti sp on line <?php // 備份資料庫$host = "localhost";$user = "root";
Time of Update: 2014-08-31
標籤:php 密碼 mysql 深夜調代碼 試過無數種方法終於見了成效login.php內容如下<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html
Time of Update: 2014-08-30
標籤:php mysql <?phpinclude("../../../Applications/MAMP/htdocs/dbconfig.php");$link = mysql_connect( $dbconfig[‘host‘], $dbconfig[‘username‘], $dbconfig[‘userpass‘] ); if(!$link){&
Time of Update: 2014-08-26
標籤:style http os 檔案 ar 資料 sp size on 如何用php大量刪除資料庫下所有首碼為prefix_的表。 例子,統一刪除首碼為“prefix_”的表。
Time of Update: 2014-09-01
標籤:style blog http color io 使用 strong ar for 先說一下這個項目的代碼結構吧。 首先是index.php,我是把它作為中央控制器,一個調度器。程式
Time of Update: 2014-09-03
標籤:phpmyadmin windows wampserver 昨天,寫了如何在Linux下配置LAMP開發環境。今天說說Windows下如何快速使用整合的軟體來搭建Windows的PHP開發環境。
Time of Update: 2014-09-05
標籤:http ar 檔案 sp c line ef .net window PHP檔案不光可以在瀏覽器中運行,也可以以命令列的方式運行。一.不設環境變數開始
Time of Update: 2014-09-12
標籤:style blog http io os 使用 檔案 2014 問題 1. 安裝IIS v7.0
Time of Update: 2014-08-30
標籤:http 使用 io ar for 檔案 div 代碼 log 使用WinCacheGrind來分析php的執行時間和效率,需要安裝XDebug這個擴充。如果對XDebug不太瞭解的話,請
Time of Update: 2014-08-25
標籤:http os 使用 io strong for ar 資料 art 我現在的老闆曾要求我為企業內部的Web服務提供一種標準的驗證方法。我遇到的一個主要問題就是我們公司主要使用了兩種平台:
Time of Update: 2014-08-24
標籤:style blog http color os io strong 檔案 ar 1、前提:IIS7已啟用。之後,安裝PHPManager,:http://phpmanager.codep
Time of Update: 2014-08-29
標籤:html php 單引號 雙引號 共置符 逸出字元 echo //echo "<tr bgcolor = '{$bgcolor}'>"; //echo '<tr bgcolor="
Time of Update: 2014-09-17
nginx 404頁面處理以及pathInfo和隱藏index.php總述,nginxpathinfo今天開發公司官網:http://www.zstime.com/,遇到一個問題,如何在nginx下設定pathInfo以及如何隱藏index.php這裡分別來講解一下:一、隱藏index.php隱藏index.php需要修改nginx的設定檔,如果你是使用vhost的,需要修改如conf/vhost/你的檔案名稱.conf檔案,整個檔案如下server { listen
Time of Update: 2014-09-13
php不啟用save_mode安全模式的設定方法,save_mode設定方法安全配置一(1) 開啟php的安全模式 php的安全模式是個非常重要的內嵌的安全機制,能夠控制一些php中的函數,比如system(), 同時把很多檔案操作函數進行了許可權控制,也不允許對某些關鍵檔案的檔案,比如/etc/passwd, 但是預設的php.ini是沒有開啟安全模式的,我們把它開啟: safe_mode = on(2)
Time of Update: 2014-08-29
CentOS 6.5 通過 PHP函數的sendmail 發送郵件,centossendmail 很多網站需要用到Sendmail函數發送啟用郵件,在centos中內建了Sendmail模組,直接調用即可,如果遇到問題,可採用如下兩個步驟檢測並解決: 1、 命令列輸入:echo "This is test mail" | mail -s 'Test mail Title' testname@mail.com