Welcome![Sign In][Sign Up]
Location:
Search - html php

Search list

[PHP用于 mysql 的php通用接口类

Description:

  php的Mysql低层接口发展到现在,已经有三种接口类型了,分别是:Mysql、Mysqli、PDO。Mysql属于最早期的Mysql数据库接口,不支持面向对象的调用方式。Mysqli及PDO开始都支持面向对象了。
  这三种接口的使用方式上都有些少差别,例如在fetch处理方式:
mysql:
 mysql_fetch_array($result, $link);
mysqli:
 mysqli_fetch_array($result, $link);
 或
 $result->fetch_array();
PDO:
 $result->fetch();  //处理单一数据
 $result->fetchAll(); //处理所有数据
 
  如果你最初使用了某个接口开发的系统,以后更改低层接口后(更换虚拟主机时,常碰到的问题),对系统的维护是项艰巨的任务。所以针对这种情况,特意写了三个类,把这三种接口方案都封装起来,实现统一的调用接品。

详细介绍,可以查看 http://www.dssz.net/78525_yong-yumysqldiphptong-yong-jie-kou-lei.html


Platform: | Size: 12238 | Author: dssz.net | Hits:

[Internet-NetworkPHP中文手册最新版(5月份)

Description: PHP,即“PHP: Hypertext Preprocessor”,是一种广泛用于 Open Source(开放源代码)的尤其适合 Web 开发并可以嵌入 HTML 的多用途脚本语言。它的语法接近 C,Java 和 Perl,而且容易学习。该语言的主要目标是让 Web 开发人员快速的书写动态生成的网页,然而,PHP 的功能并不局限于此。
Platform: | Size: 4664047 | Author: 45445@554.cc | Hits:

[PHPphp敏捷开发框架CodeIgniter

Description: 译序 前言 第一章 对 CodeIgniter 的介绍 1.1 CodeIgniter 能为你做什么? 1.1.1 节省时间 1.1.2 使你的网站更健壮 1.1.2.1 确保你的链接自动更新 1.1.2.2 防止对数据库的攻击:对表单输入的数据进行校验和处理 1.1.3 增强你的代码 1.1.3.1 发送 Email 和附件很简单 1.1.3.2 压缩用户要下载的文件以加快下载速度 1.2 CodeIgniter 是什么?框架又是什么? 1.3 关于开发者 1.4 “开源”商业模式 1.5 CI 不能做什么 1.6 许可协议 1.7 总结 第二章 2 分钟:建立一个 CodeIgniter 网站 2.1 准备知识 2.2 安装 CodeIgniter 2.3 分析文件结构 2.4 配置文件 2.5 它能工作吗? 2.6 总结 第三章 分析网站结构 3.1 MVC—到底有什么用? 3.2 CI 的网站结构:控制器和视图 3.2.1 Welcome 控制器 3.2.2 让视图开始工作 3.2.3 默认控制器 3.3 CodeIgniter 语法规则 3.3.1 控制器 3.3.2 视图 3.4 CI 网站上的文件或类的类型 3.5 这些文件夹的含义? 3.6 设计一个较好的视图 3.7 设计一个较好的控制器 3.7.1 把参数传给一个函数 3.7.2 传递数据到视图 3.8 CI 中的类彼此之间如何操控 3.8.1 调用视图 3.8.2 直接地调用函数 3.8.3 与控制器互动 3.8.4 这就像一个鸡蛋杯 3.8.5 一个 CI 辅助函数的例子:URL 辅助函数 3.8.6 一个简单的类库例子:创建一个菜单 3.9 总结 第四章 使用 CI 简化数据库开发 4.1 配置设置 4.2 为我们的网站设计数据库 4.3 Active Record 4.3.1 使用 Active Record 类的优点 4.3.1.1 节省时间 4.3.1.2 自动机制 4.3.2 “读取”查询 4.3.3 显示查询结果 4.3.4 “创建”和“更新”查询 4.3.5 “删除”查询 4.3.6 Active Record 和传统 SQL 编程的结合 4.4 总结 4.5 附录:使用 MYSQL 查询语句创建“websites”数据库 第五章 简化 HTML 页面和表单的设计 5.1 编写视图 5.2 PHP 语法的长格式和短格式 5.3 嵌套视图 5.4 网站架构的现实问题 5.5 CI 的表单辅助函数:输入数据 5.5.1 使用表单辅助函数的好处之一:清楚 5.5.2 使用表单辅助函数的好处之二:自动化 5.6 我的“Display”模型 5.7 CI 的验证类:方便地检验数据 5.7.1 设置验证规则 5.7.2 设置控制器 5.7.3 设置表单 5.8 总结 第六章 简化使用 Session 和安全 6.1 开始用 CI 设计一个实际的网站 6.2 关于网站 6.3 安全/Session:使用另一个 CI 类库 6.3.1 使 Session 更安全 6.4 安全 6.5 总结 第七章 CodeIgniter 和对象 7.1 面向对象编程 7.1.1 CI“超级对象”的工作原理 7.1.2 引用复制 7.2 在 CI“超级对象”中加入你自己的代码 7.3 CI“超级对象”的问题 7.4 总结 第八章 用 CI 测试你的代码 8.1 为什么测试,为谁测试? 8.2 CI 的错误处理类 8.3 CI 的单元测试类 8.3.1 什么时候使用单元测试 8.3.2 单元测试的示例 8.4 CI 的基准测试类 8.5 CI 的评测器类 8.6 用“模拟”数据库来做测试 8.7 控制和时间安排 8.8 总结 第九章 用 CI 通信 9.1 使用 FTP 类测试远程文件 9.2 机器之间的对话—XML-RPC 9.2.1 使 XML-RPC 的服务器与客户端交互 9.2.2 格式化 XML-RPC 数据交换 9.2.3 调试 9.2.4 XML-RPC 带来的问题? 9.3 与人交流的工具:Email 类 9.4 总结 第十章 CI 如何帮助提供动态的数据 10.1 日期辅助函数:转换和本地化日期 10.2 使用文本和 Inflector 辅助函数 10.3 国际化:语言类 10.4 编写 HTML 表格的好方法:表格类 10.5 缓存网页 10.6 总结 第十一章 使用 CI 处理文件和图片 11.1 文件辅助函数 11.2 下载辅助函数 11.3 文件上传类 11.4 CI 的图像类 11.5 用 CI Zip 类压缩文件很容易 11.6 总结 第十二章 产品版本、升级和重大决定 12.1 连接:检查 Config 文件 12.1.1 URL 12.1.2 数据库 12.1.3 其它 config 文件 12.2 找出 PHP 4/5 和操作系统间的差异 12.2.1 诊断工具 12.3 应对 CI 新版本带来的变化 12.3.1 如何装载模型,以及如何调用它们 12.3.2 如何初始化你自己的类库 12.4 如果有了新版 CI,我需要更新吗? 12.5 如何修改 CI 的基础类 12.6 总结 第十三章 快捷的 CRUD 及其配合使用 13.1 CRUD 模型:设计原理 13.2 标准的控制器格式 13.3 数据库表 13.4 模型的心脏:数组 13.5 CRUD 模型 13.5.1 Showall 函数 13.5.1.1 读取数据 13.5.1.2 Delete 和 Trydelete 函数 13.5.2 Insert 函数 13.5.3 Insert2 函数 13.5.4 测试套件 13.6 总结 第十四章 审视 CI 14.1 一些代码:“do_test”模型 14.2 一个平衡表 14.2.1 CI 能提供帮助的地方:结构 14.2.2 CI 能提供帮助的地方:简化 14.2.3 CI 能提供帮助的地方:额外功能 14.3 CI 的问题 14.3.1 完整性 14.3.2 易用性 14.4 总结 第十五章 资源和扩展 15.1 CI 的用户论坛 15.2 视频教程 15.2.1 可用的插件和类库 15.2.2 AJAX/Javascript 15.2.3 身份验证 15.2.4 外部网站 15.2.5 比较:使用哪个图表类库? 15.2.6 CRUD:新领域 15.2.7 其它编程资源,例如 Xampplite、MySQL 和 PHP 15.3 总结
Platform: | Size: 1176859 | Author: 280453778@qq.com | Hits:

[WEB CodeSmarty-2.6.6.tar

Description: php html模板库,支持缓存-php html template library, support cache
Platform: | Size: 137216 | Author: 陈洋 | Hits:

[OtherPHP的十个高级技巧(TXT)

Description: 球超过300万个互联网网站的管理员都在使用PHP,使得它成为最为普及的服务器端脚本语言之一。其特点是运行速度快、稳定可靠、跨平台,而且是开放源代码软件。随你使用的水平不同,PHP可以很简单,也可以很复杂,可以只使用它发送HTML表格元素,还可以在PHP应用程序中集成Java和XML。-ball over three million Internet site manager in the use of PHP, making it the most popular server-side scripting language. Its characteristics are fast and reliable, cross-platform, but is open-source software. As you use different levels, PHP can be very simple and very complex, can only use it to send HTML form elements, but also in PHP applications integrate Java and XML.
Platform: | Size: 13312 | Author: 冷风 | Hits:

[WEB Code0510141559

Description: PHPCMS 是一个基于PHP+MYSQL的全站生成html的PHP的网站管理系统,是一个经过完善设计并适用于各种服务器环境(如UNIX、LINUX、WINDOWS等)的高效、全新、快速、优秀的网站解决方案,特别适合政府、学校、企业以及其他各种新闻资讯类网站使用。-PHPCMS is based on PHP and MYSQL one of the station's generating html PHP Web site management system, is a perfection in the design and application of various server environment (such as UNIX, Linux, Windows, etc.) efficient, a new, fast, excellent website solutions, particularly for the government, schools, enterprises and various other categories of news and information sites.
Platform: | Size: 2523136 | Author: 胡宾 | Hits:

[WEB Codequickstart-3.8.0

Description: 内容管理系统CMS商业版本,支持各种商业网站的发布,内容管理,HTML编辑,模版管理等,功能十分强大-content management systems CMS commercial version, support for all kinds of commercial publishing, content management, HTML editing, template management, a very strong function
Platform: | Size: 17612800 | Author: wuyuepeng | Hits:

[WEB Codephp-weathermap-0.95b

Description: Network Weathermap4RRD is a php or perl script that generates picture network links utilization. Data used to create graph are acquired from RRDTool databases or MRTG HTML files and are displayed as two ways colored arrows on a map representing the logical topology of the network.
Platform: | Size: 2789376 | Author: dontcry2008 | Hits:

[JSP/Javahtml

Description: html汉字转拼音源代码,可以把中文汉字转换拼音汉字转为拼音-htnl word turn pinyin
Platform: | Size: 17408 | Author: keesun | Hits:

[WEB Codecss8

Description: 全站生成HTML. 文章HTML命名,文件名转汉语拼音后成生HTML 后台生成RSS和SITEMAP 安装说明:数据库文件在DATA目录下,数据库链接文件在Incs/connts.php 后台进入地址:/admin/ -html,php,css8
Platform: | Size: 2491392 | Author: 恒飞 | Hits:

[SMSgprsmodem

Description: GSM GPRS MODEM彩信短信开发接口以标准的DLL(Dynamic Linkable Library)即动态链接库文件提供,支持彩信、短信、超长短信、Wap Push、闪信、书签推送、名片推送的发送与接收。支持几乎所有常用的开发语言,包括ASP,ASP.NET,Borland C++ Builder,Borland Delphi,HTML,PHP,VBA,VBScript,Visual Basic,Visual Basic.NET,Visual C++,Visual C#.net等,压缩包内包含常见开发语言例程-component (DLL) for sending and receiving SMS from PC using a GSM modem. Very simple usage in Visual Basic, ASP, C#(.NET), C++, etc.
Platform: | Size: 4433920 | Author: mj200909 | Hits:

[GDI-Bitmapphp-Unicode-0.1.3

Description: php-Unicode 轉換 this A number of minor inconveniences-2008-08-26- v0.1.2 * This release resolves an issue with Unicode_String::ToLower(). A number of minor inconveniences (such as errors in the documentation) were also fixed. All unquoted barewords were also removed, to avoid E_STRICT errors. This version requires PHP 5. 2006-04-26- v0.1.1 * This release updates the block database and introduces phpdoc documentation. 2006-04-07- v0.1.0 * There was a bug with XML/HTML encoding, this is fixed now. 2006-02-06- v0.0.3 * This release is compatible with PHP 4.x. 2005-12-14- v0.0.2 * This release adds more string-like functions to Unicode_String (eg explode(), strpos(), trim(), reverse(), cmp()). Unicode_Character can now includes a method to list the homoglyphs for a specific character. 2005-11-01- v0.0.1 * Initial release. -- $Id: ChangeLog,v 1.6 2008/08/26 10:04:21 gavin Exp $
Platform: | Size: 148480 | Author: mm | Hits:

[WEB Codeyywzxt2009

Description: HTML医院网站系统基于PHP+MYSQL开发,在文章内容网站的基础上,预设了医院概况、新闻动态、环境设备、名医荟萃、专科介绍、就医指南、专家门诊值班表、网上挂号、医疗保健知识、在线咨询等医院网站常用的栏目和测试数据,采用适合医院网站的专用模版,增强了系统的针对性和易用性。系统具有文章、图文、下载、社区、表单、用户等基本系统模块和一系列网站辅助功能,用户也可根据自身特点任意创建和修改栏目,适合创建各类医院诊所网站。-HTML hospital system is based on PHP+ MYSQL web site development, content sites in the article, based on the pre-hospital profiles, news developments, environmental equipment, renowned Chinese medicine practitioners, specialist presentations, medical treatment guidelines, experts out-patient duty tables, on-line registration, medical and health knowledge , on-line consultation, the hospital Web site commonly used part and test data, using a dedicated web site templates for the hospital to enhance the system' s relevance and ease of use. System with articles, graphics, downloads, community, form, users and other basic system module and a series of Web accessibility, users can create and modify their own characteristics of arbitrary section, ideal for creating various types of hospitals and clinics Web site.
Platform: | Size: 6549504 | Author: 木同 | Hits:

[WEB Codehtml-extractor

Description: 发布一个HTML正文提取程序HTMLExtractor, 程序主要是基于内容统计的方法,暂不包含自学习能力,仅是 一个分析程序而以,网上也有别人实现了的正文提取程序,不过 大部人都当宝,都不愿意公开完整代码,有些大人实现了一些简 单的,不过分析能力和识别能力都不太理想。所以自己做了一个 简单的,本来想用PHP DOM分析器,不过大部份网页都不规范, 缺个标签啥的都很正常,所以自已又造了个简单的轮子分析HTML标 签,功能比较简单,每个元素都生成一个对象,内存方面占用比较 高,不过在这里我只是为了实现,并没去做优化。因为我并不是在 做应用,所以希望不要让我改改成什么样去适用你们的业务(以前经常 有QQ加上让我把我的例子怎么改,很无语), 如果你们喜欢,可以和我一起开发完善他。 补充一下,因为写的着急,现在几个类的耦合性还比较大,下来再守善吧。 项目代码 http://code.google.com/p/html-extractor/ 在线例子 http://dev.psm01.cn/c/html-extractor.php-HTML text extraction procedure to release a HTMLExtractor, Program is mainly based on the content of statistical methods, including self-learning capability temporarily, only An analytical procedure to, the Internet also has the body of someone else realized the extraction process, but When the treasure most people are reluctant to open the complete code, some adults to achieve a number of simple Single, but analysis and recognition are not ideal. So do yourself a Simple, had wanted to use PHP DOM parser, but most of the pages are not standardized, Han s missing tags are normal, so their own and made the wheels of a simple HTML standards Sign, function is relatively simple, each element generates an object, the memory area occupied by comparison High, but I m just here to achieve, it did not do optimization. Because I am not Do apply, so I hope I do not what to change into for your business (before the regular I had QQ with examples of how to change my very silent), If you p
Platform: | Size: 5120 | Author: 小徐 | Hits:

[Otherueditor-utf8-php

Description: abcEditor ABC编辑器,一款所见即所得富文本HTML在线编辑器,只加载一个JS文件 超轻量级,支持jpg jpeg gif bmp png格式的图片上传,上传大小暂定为不超过200K,如果你的服务器网速足够快,可修改此值为更大值。再此要注意,上传功能基于PHP环境。 编辑器适用于html php asp .net jsp等语言,不过自己要修改对应的上传语言。-abcEditor ABC editor, a WYSIWYG online HTML rich text editor, just load a JS file super lightweight, supports jpg jpeg gif bmp png format image upload, upload size is tentatively scheduled for no more than 200K, if you the server speed is fast enough, you can modify this value is greater value. Then this should be noted, upload PHP-based environment. Editor apply to html php asp .net jsp and other languages, but they have to modify the corresponding uploaded language.
Platform: | Size: 1803264 | Author: 陈琳 | Hits:

[WEB Codetestt

Description: 简单PHP&MYSQL网页留言版功能,提供给初学者使用(Simple message page version of the function, available for beginners to use)
Platform: | Size: 1024 | Author: CHOPIN | Hits:

[Othershopimooc

Description: 用html+PHP模仿电商购物网站的首页,商品详情,商品购买,商品添加购物车等功能(Electricity supplier shopping website)
Platform: | Size: 82313216 | Author: wannayuan | Hits:

[Otherphp-zh

Description: PHP,即“PHP: Hypertext Preprocessor”,是一种被广泛使用的开放源代码多用途脚本语言,尤其适用于 web 开发并可以嵌入到 HTML 中去。其语法利用了 C,Java 和 Perl,非常容易学习。该语言的主要目标是让 web 开发人员可以很快写出动态生成的网页,但 PHP 的功能远不止如此。(PHP, the "PHP: Hypertext Preprocessor", is a widely used open source multipurpose scripting language, especially for web development and can be embedded into HTML. Its syntax takes advantage of C, Java, and Perl, and is very easy to learn. The main goal of the language is to enable Web developers to quickly write dynamically generated web pages, but PHP's function is far more than this.)
Platform: | Size: 3065856 | Author: tony2018 | Hits:

[WEB Codenaldoza(html project)

Description: this is a simple example of a php code
Platform: | Size: 1166336 | Author: he123354 | Hits:

[WEB Codephp_manual_zh.html

Description: php_manual_zh.html PHP-7.2开发手册 中文版 单页HTML(The Chinese version of the PHP-7.2 Development Manual)
Platform: | Size: 6261760 | Author: BSX | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net