- 1、本文档共20页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
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
您可能关注的文档
- DOS下NET命令的详细使用(国外英文资料).doc
- DOS大全(国外英文资料).doc
- dsfdsfd(国外英文资料).doc
- DVCpro50(国外英文资料).doc
- DXP2004下Miscellaneous Devices.Intlib元件库中常用元件有(国外英文资料).doc
- DXP元件库(国外英文资料).doc
- DXP库(国外英文资料).doc
- D1压力管道考试模拟题1(国外英文资料).doc
- D双击练习(国外英文资料).doc
- EAS HR实践系列七:中国华电--电力工业发展的新标杆(国外英文资料).doc
- 跨区域教育资源互补:基于国家智慧教育云平台的创新与实践教学研究课题报告.docx
- 跨境电商平台2025年用户隐私保护技术方案与行业发展趋势.docx
- 小学英语听说:校园周边文具店英文标识学习与英语听说能力提升研究教学研究课题报告.docx
- 面向2025年,创业孵化基地建设资金申请与创业项目融资策略报告.docx
- 《建筑行业数字化转型中的建筑企业数字化转型商业模式创新研究》教学研究课题报告.docx
- 《文化创意产业与旅游产业融合发展中的旅游与文化创意产业创新资源配置策略研究》教学研究课题报告.docx
- 多媒体在初中物理教学中的问题导向学习策略研究教学研究课题报告.docx
- 生物基材料在户外旅游用品包装中的应用前景与2025年市场分析.docx
- 基于数字化评价的学生国际交流项目实施效果评估研究教学研究课题报告.docx
- 2025年钢铁绿色制造技术环保装备市场动态与竞争格局报告.docx
文档评论(0)