• 讀書網|DuShu.com - 讀書·學習·生活
  •  | 簡體版
  • 論壇
  • 暢銷
  • 連載
  • 圖書
  • 資訊
  • 首頁
  • 國學/古籍 | 文學藝術 | 人文社科 | 經濟管理 | 生活時尚 | 科學技術 | 教材教輔 | 少兒讀物
  •    
  • 圖書搜索:
  •  
     全部圖書 可讀圖書 可購圖書
     
  • PHP & MySQL:為創建動態的數據庫驅動的網站而展現的視覺藍圖PHP & MySQL - 書籍詳細信息
  • 查看同類圖書:科學技術»計算機/網絡»軟件與程序設計»網絡編程»PHP & MySQL:為創建動態的數據庫驅動的網站而展現的視覺藍圖PHP & MySQL
  • PHP & MySQL:為創建動態的數據庫驅動的網站而展現的視覺藍圖PHP & MySQL

  • 【作 者】:Janet Valade
  • 【叢編項】:
  • 【裝幀項】:平裝 / 307
  • 【出版項】:John Wiley & Sons / 2007-8-1
  • 【ISBN號】:9780470048399 / 0470048395
  • 【原書定價】:¥271.00 有1家書店打折銷售 
  • 【主題詞】:計算機/網絡-程序設計-PHP
  • 【圖書簡介】
      "The expertise, thought, and effort that go into each book are obvious, and I sincerely appreciate your efforts. Keep up the wonderful work!":Tracey Moore (Memphis, TN)Welcome to the only guidebook series that takes a visual approach to professional-level computer topics. Open the book and you will discover step-by-step screen shots that demonstrate over 140 key techniques using PHP amd MySQL, including:* Configuring Apache to process PHP code* Working with character strings* Creating, sorting, and comparing arrays* Defining and using functions* Finding and replacing substrings* Querying databases and retrieving data* Stopping and starting the MySQL server* Adding dynamic check boxes* Sending new Web pages to a browserExtra / Apply It* High-resolution screen shots demonstrate each task* Succinct explanations walk you through step-by-step* Two-page lessons break big topics into bite-sized modules* "Apply It" and "Extra" sidebars highlight useful tips
  • 【本書目錄】
    HOW TO USE THIS BOOK.
    1 SETTING UP YOUR DEVELOPMENT ENVIRONMENT.
     Introducing Dynamic Web Sites.
     Set Up Your Development Environment.
     Obtain Apache.
     Install Apache.
     Obtain MySQL.
     Install MySQL.
     Configure MySQL.
     Install MySQL Administration Programs.
     Create MySQL Accounts for Use in PHP Scripts.
     Obtain PHP.
     Install PHP.
     Configure Apache to Process PHP Code.
     Configure PHP.
     Test Your Development Environment.
    2 LEARNING PHP BASICS.
     How PHP Works.
     Add PHP Code to a Web Page File.
     Using PHP Statements.
     Understanding PHP Output Statements.
     Using PHP Variables.
     Using PHP Constants.
     Work with Numbers.
     Work with Character Strings.
     Work with Dates and Times.
     Modify or Remove Variables.
     Using Variable Variables.
     Understanding Error Messages.
     Add Comments to a Script.
    3 USING ARRAYS.
     Create an Array.
     Modify or Remove an Array.
     Get Information about an Array.
     Sort an Array.
     Walk through an Array with foreach.
     Walk through an Array Manually.
     Find Values in an Array.
     Compare Arrays.
     Split and Merge Arrays.
     Convert an Array into a String and Vice Versa.
     Store a Set of Variables in an Array.
     Store Array Elements in Separate Variables.
     Create a Multidimensional Array.
     Walk through a Multidimensional Array.
     Using Built-in PHP Arrays.
    4 CONTROLLING THE FLOW OF THE SCRIPT.
     Change the Order of Statement Execution.
     Check the Contents of a Variable.
     Set up Conditions with Comparison Operators.
     Introducing Regular Expressions.
     Match Character Strings to Patterns Using Regular Expressions.
     Join Multiple Comparisons with Logical Operators.
     Using an if Statement.
     Using a switch Statement.
     Using a for Loop.
     Using a while Loop.
     Using a do-while Loop.
     Avoid an Infinite Loop.
     Break Out of a Loop.
    5 REUSING PHP CODE.
     Include a Code File.
     Configure the Path to the include Files.
     Include Files Automatically.
     Store include Files Securely.
     Define and Use a Function.
     Using Variables in a Function.
     Pass Values to a Function.
     Return Values from a Function.
    6 SOME USEFUL PHP BUILT-IN FUNCTIONS.
     Format a Number.
     Round a Number.
     Find the Largest or Smallest Number.
     Remove Leading and Trailing Blank Spaces.
     Change the Case of a String.
     Format a String.
     Count the Characters or Substrings in a String.
     Locate a Substring in a String.
     Get a Substring.
     Find and Replace Substrings.
     Add a Substring to a String.
     Using Regular Expressions to Replace Text.
     Pad or Repeat a String.
     Convert a Character to and from an ASCII Value.
     Compare Strings.
     Convert a String into an Array.
     Send an Email Message.
     Send an HTTP Header.
     Read Configuration Settings.
     Set a Local PHP Configuration Option.
    7 USING MYSQL DATABASES.
     How a MySQL Database Works.
     Send a Query with the mysql Client.
     Send a Query with the MySQL Query Browser.
     Create, Select, or Remove a MySQL Database.
     Define a MySQL Table.
     Create and Remove a MySQL Table.
     Modify the MySQL Table Structure.
     Add a Row of Data to a Database.
     Add Data from a Text File to a Database.
     Store Incremental Values in a Column.
     Retrieve Data from a Database.
     Limit Query Execution to Specific Rows with a WHERE Clause.
     Retrieve Data from Multiple Tables with UNION.
     Retrieve Data from Multiple Tables by Joining Tables.
     Update Data in a Database.
     Remove Data from a Database.
     Query a MySQL Database from a PHP Script.
     Display Database Data on a Web Page in a PHP Script.
     Handle MySQL Errors.
    8 ADMINISTERING MYSQL DATABASES.
     Understanding MySQL Accounts.
     View Existing Accounts.
     Create a MySQL Account.
     Change the Password of a MySQL Account.
     Add and Remove Privileges.
     Change the Name of a MySQL Account.
     Remove a MySQL Account.
     Stop and Start the MySQL Server.
     Using MySQL Logs.
     Back Up Data.
     Restore Data.
     Upgrade MySQL.
    9 ADDING HTML FORMS TO A WEB PAGE.
     Display an HTML Form.
     Add a Text Field.
     Add a Multiline Text Area.
     Add a Hidden Field.
     Add a Dynamic Selection List to a Form.
     Add a Date Selection List.
     Add Dynamic Radio Buttons.
     Add Dynamic Check Boxes.
     Create One or More Submit Buttons.
     Choose the POST or GET Method for a Form.
     Create a Form That Uploads a File.
    10 PROCESSING DATA FROM FORMS.
     Process Information from a Form.
     Display Data from a Form.
     Display and Process a Form in One Script.
     Check for Blank Fields.
     Verify Form Data.
     Clean Form Data.
     Add Form Data to a Database.
     Insert Form Data into a Database.
     Update or Remove Database Data.
     Process an Uploaded File.
    11 MANAGING USER SESSIONS.
     Understanding User Sessions.
     Send a New Web Page to the Browser.
     Add Information to a URL.
     Store Information in Cookies.
     Store Information in a PHP Session.
     Using PHP Sessions without Cookies.
    12 OBJECT-ORIENTED PROGRAMMING IN PHP.
     Understanding Object-Oriented Programming.
     Create and Use an Object.
     Set Properties in a Class.
     Add Methods to a Class.
     Write a Constructor or a Destructor Method.
     Using PHP Magic Methods to Get or Set Properties.
     Using Inheritance in a Class.
     Using Exceptions.
     Copy and Compare Objects.
     Get Information about Objects and Classes.
     Using Abstract Classes.
     Using Interfaces.
    APPENDIX A: PROGRAMMING EDITORS AND IDES FOR PHP.
    APPENDIX B: TROUBLESHOOTING TIPS.
    INDEX.
  • 【購買本書】
  • 商城名稱價格 配送信息優惠活動去看看購買

    當當網
    ¥216.80
    當天加急送:北京五環以內
    送貨上門:國內178個城市
    郵寄:全球
    特快專遞:全球
    特惠商品68折封頂 去看看 訂購

    中國圖書館網
    ¥0.4/頁起
    郵寄、快遞:全國
    特快專遞EMS:全球
    提供稀缺絕版圖書文獻影印服務 去看看 預定
  • 說明:
  • 1、由于網上書店可能根據各種情況隨時調整價格,我們的價格信息存在滯后性。以上價格僅作參考,具體以網上書店標示的價格為準。
    2、如價格折扣信息和原書定價存在較大誤差,可能是該店售書為本書的不同版本或不同裝禎形式,請讀者自行鑒別。
    3、對如何網上購書存在疑問,請點擊上面購書指南鏈接查詢。
  • Copyright © 讀書網 www.dushu.com 2006-2007, All Rights Reserved.
    鄂ICP備06000781號 公安備4201502577