php学习笔记(国外英文资料).doc

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

php学习笔记(国外英文资料) One: use PHP to access the database from the WEB: 1: the basic steps in the WEB query database: A: check and filter the data from the user B: establish a proper database connection C: query the database D: get the query results E: displays the results to the user 1.1: check and filter user data: (1) the trim () function is implemented: Eg: $search = trim ($_POST ( search )) filters the null characters from the $search at the end of the user input; Check for user input: If (! $search | |! $qname) You have not entered search details. Please go back and try again. The exit; (2) when a user independent input data, we want to test the user input data have a special character, so to escape characters, involves the addslashes (), stripslashes (), and functions Get_magic_quotes_gpc (); When the user enters data to a database, the data must be escaped; We first detect that the test has been automatically finished in quotation marks. If you dont have to use the function addslashes () to filter; Eg: if (! Get_magic_quotes_gpc ()) {$searchtype = addslashes ($searchtype); $search = addlashes ($search) } If I take the data from the database, I also filter the backslash using the stripsalshes () function when the magic quotes feature is not open. 1.2: establish a connection: The connection is divided into object-oriented and process-oriented: (1) : @$db = new mysql ( localhost , user name, password, database); This is an object-oriented approach; (2) : @$db = mysql_connect ( localhost , user name, password, database); This is a process oriented approach; This function returns a resource rather than an object, the resource representation to connect to the database, and if you use the process method, the resource must be passed to the mysql all of the other functions; Test connection results: If (mysql_connect_errno ()) { The echo Error: could not connect to database.please try again. The exit; } Mysql has certain restrictions on the number of simultaneous connection

文档评论(0)

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

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档