Web-Sites-Design-and-Programming-10--计算机科学与技术---网站设计与编程--双语教学课件.ppt

Web-Sites-Design-and-Programming-10--计算机科学与技术---网站设计与编程--双语教学课件.ppt

  1. 1、本文档共84页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Web-Sites-Design-and-Programming-10--计算机科学与技术---网站设计与编程--双语教学课件.ppt

Web Sites Design and Programming Lecturer: Lijie Guo Room: XNA508 Phone: Email: guo_lijie163@163.com More PHP and MySQL Overview Other function Form Handling Files Architectures for Database Access Introduction to SQL The MySQL Database System PHP Information The phpinfo() function is used to output PHP information. Form Handling Forms could be handled by the same document that creates the form, but that may be confusing A separate document to handle the form can be specified as the value of the action attribute It does not matter whether GET or POST method is used to transmit the form data PHP builds an array of the form values $_GET for the GET method $_POST for the POST method Files (self-study) PHP is able to create, read and write files on the server system Opening a file Prepares file for use and associates a variable with the file for future reference $fptr = fopen(filename, use_indicator) Every open file has an internal pointer (where the next file operations should take place) Because fopen could fail, use it with die $file_var = fopen (“test.dat”, “r”) or die (“Error – test.dat can’t be opened”); File Use Indicators (self-study) Files (self-study) Use file_exists(filename) to determine whether file exists before trying to open it Use fclose(file_var) to close a file Reading from a file 1. Read all or part of the file into a string variable $str = fread($file_var, #bytes) To read the whole file, use filesize(file_name) as the second parameter $file_string = fread ($file_var, filesize(“test.dat”)); 2. Read the lines of the file into an array $file_lines = file(file_name); Need not open or close the file Files (self-study) Reading from a file (continued) 3. Read one line from the file $line = fgets(file_var, #bytes) Reads characters until eoln, eof, or #bytes characters have been read 4. Read one character at a time $ch = fgetc(file_var) Control reading lines or characters with eof detection

文档评论(0)

heroliuguan + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8073070133000003

1亿VIP精品文档

相关文档