上一页 1 2 3 4 5 6 7 ··· 17 下一页
  2011年9月19日
摘要: 方法1:把php.ini的display_errors = on改成display_errors = off方法2: 1. 在PHP.ini中搜索关键字 : allow_call_time_pass_reference 没有的自行建立。 2. 将 Off 改成 On ,Web Server重起就OK了 阅读全文
posted @ 2011-09-19 12:36 佐伊凡 阅读(408) 评论(0) 推荐(0) 编辑
  2011年9月16日
摘要: jQuery验证框架(一) 可选项 (jQuery validation)18人收藏此文章, 收藏此文章 发表于10个月前 , 已有3808次阅读 共1个评论 18人收藏此文章jQuery验证框架 Html代码<scripttype="text/javascript"src=js/jquery-1.3.2.min.js></script><scripttype="text/javascript"src=js/jquery.validate.pack.js></script><scripttype=&q 阅读全文
posted @ 2011-09-16 16:39 佐伊凡 阅读(870) 评论(0) 推荐(0) 编辑
  2011年9月1日
摘要: 在CSS的兼容时往往不同的浏览器会有自己的识别专用符,这里找了几个常用的个浏览器的专用识别方法。-khtml如:Safari浏览器-moz如Firefox浏览器-webkit如谷歌浏览器-o如Opera浏览器p {color: red; /* 所有浏览器都支持 */ color: blue !important; /* Firefox、IE7支持 IE8支持*/ *color: green; /* IE6、IE7支持 */ *+color: pink; /* IE7支持 */ _color: gray; /* IE6支持 */ } 阅读全文
posted @ 2011-09-01 17:18 佐伊凡 阅读(346) 评论(0) 推荐(0) 编辑
  2011年8月30日
摘要: client.php<?php/*try { $client = new SoapClient(null, array('location' =>"http://127.0.0.1/ktvme/serverSoap.php",'uri' => "http://127.0.0.1/") ); echo $client->minus_func(100,99);} catch (SoapFault $fault){ echo "Error: ",$fault->faultcode 阅读全文
posted @ 2011-08-30 17:01 佐伊凡 阅读(374) 评论(0) 推荐(0) 编辑
  2011年8月17日
摘要: http://docs.jquery.com/Plugins/Validation#Plugin_methodshttp://www.cnblogs.com/Qbit/archive/2011/03/03/1969951.html 阅读全文
posted @ 2011-08-17 16:53 佐伊凡 阅读(179) 评论(0) 推荐(0) 编辑
  2011年8月15日
摘要: smarty一维数组的引用2008-07-30 11:49index.php: $smarty = new Smarty; $Contacts = array(‘a’=>'123','b'=>'456')$smarty->assign('Contacts',$Contacts); $smarty->display('index.tpl');index.tpl: {$Contacts.a}<br> {$Contacts.b}<br> 阅读全文
posted @ 2011-08-15 16:52 佐伊凡 阅读(1128) 评论(0) 推荐(0) 编辑
  2011年8月12日
摘要: 重点:store_result,extra recordset原文:http://www.php.net/manual/en/mysqli.store-result.php参考http://www.php.net/manual/en/mysqli.multi-query.phpAfter reading through original notes and example above as well as wading through the documentation, I finally got a loop to work with two stored procedures.Using 阅读全文
posted @ 2011-08-12 17:40 佐伊凡 阅读(1116) 评论(0) 推荐(0) 编辑
  2011年8月11日
摘要: mysqli提供了面向对象和面向过程两种方式来与数据库交互,分别看一下这两种方式。1.面向对象在面向对象的方式中,mysqli被封装成一个类,它的构造方法如下:__construct ([ string $host [, string $username [, string $passwd [, string $dbname [, int $port [, string $socket ]]]]]] ) 在上述语法中涉及到的参数说明如下。l host:连接的服务器地址。l username:连接数据库的用户名,默认值是服务器进程所有者的用户名。l passwd:连接数据库的密码,默认值为空。l 阅读全文
posted @ 2011-08-11 16:47 佐伊凡 阅读(764) 评论(0) 推荐(0) 编辑
摘要: from:http://stackoverflow.com/questions/4076566/how-to-detect-a-rollback-in-mysql-stored-procedure1 down vote favoriteI'm trying to figure out a way to detect an occurrence of rollback in a MySQL stored procedure so I could handle the situation accordingly from a PHP script, but so far I can not 阅读全文
posted @ 2011-08-11 14:54 佐伊凡 阅读(1262) 评论(0) 推荐(0) 编辑
  2011年8月3日
摘要: http://httpd.apache.org/docs/2.2/zh-cn/ 阅读全文
posted @ 2011-08-03 11:14 佐伊凡 阅读(98) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 17 下一页