<?xml version="1.0" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>黑面小窝 - 脚本语法</title><link>http://www.heimian.com/</link><description>关注网络安全！关注黑客技术！关注seo优化！ - </description><generator>RainbowSoft Studio Z-Blog 1.8 Walle Build 100427</generator><language>zh-CN</language><copyright>Copyright Black face WebSite. Some Rights Reserved.</copyright><pubDate>Tue, 07 Sep 2010 21:24:48 +0800</pubDate><item><title>ASP、JSP、PHP 三种脚本比较</title><author>3768110@qq.com (admin)</author><link>http://www.heimian.com/post/802.html</link><pubDate>Thu, 19 Aug 2010 23:50:24 +0800</pubDate><guid>http://www.heimian.com/post/802.html</guid><description><![CDATA[<p>目前，最常用的三种动态网页语言有ASP(Active Server Pages),JSP(JavaServer Pages),PHP (Hypertext Preprocessor)。<br /><br />简 介<br /><br />　　ASP全名Active Server Pages，是一个WEB服务器端的开发环境，利用它可以产生和执行动态的、互动的、高性能的WEB服务应用程序。ASP采用脚本语言VBScript（Java script）作为自己的开发语言。<br /><br />...</p>]]></description><category>脚本语法</category><comments>http://www.heimian.com/post/802.html#comment</comments><wfw:comment>http://www.heimian.com/</wfw:comment><wfw:commentRss>http://www.heimian.com/feed.asp?cmt=802</wfw:commentRss><trackback:ping>http://www.heimian.com/cmd.asp?act=tb&amp;id=802&amp;key=08f71ae4</trackback:ping></item><item><title>mssql,mysql,access,Oracle 数据库连接字符串</title><author>3768110@qq.com (admin)</author><link>http://www.heimian.com/post/793.html</link><pubDate>Mon, 16 Aug 2010 21:29:51 +0800</pubDate><guid>http://www.heimian.com/post/793.html</guid><description><![CDATA[<p><span style="color: #ff0000">===========================================</span><br />SQL ODBC connection strings</p><p>Standard Security:</p><p>&ldquo;Driver={SQLServer};Server=Your_Server_Name;Database=Your_Database_Name;Uid=Your_Username;Pwd=Your_Password;&rdquo;</p>...]]></description><category>脚本语法</category><comments>http://www.heimian.com/post/793.html#comment</comments><wfw:comment>http://www.heimian.com/</wfw:comment><wfw:commentRss>http://www.heimian.com/feed.asp?cmt=793</wfw:commentRss><trackback:ping>http://www.heimian.com/cmd.asp?act=tb&amp;id=793&amp;key=2b15eebb</trackback:ping></item><item><title>编写高效的php代码</title><author>3768110@qq.com (admin)</author><link>http://www.heimian.com/post/538.html</link><pubDate>Mon, 26 Apr 2010 23:02:14 +0800</pubDate><guid>http://www.heimian.com/post/538.html</guid><description><![CDATA[<p>优化PHP代码的40条建议<br />by Mr.Crazy on Dec.05, 2008, under PHP<br /><br />1.如果一个方法可静态化，就对它做静态声明。速率可提升至4倍。<br /><br />2.echo 比 print 快。<br /><br />3.使用echo的多重参数（译注：指用逗号而不是句点）代替字符串连接。<br /><br />4.在执行for循环之前确定最大循环数，不要每循环一次都计算最大值。<br /><br />5.注销那些不用的变量尤其是大数组，以便释放内存。<br />...</p>]]></description><category>脚本语法</category><comments>http://www.heimian.com/post/538.html#comment</comments><wfw:comment>http://www.heimian.com/</wfw:comment><wfw:commentRss>http://www.heimian.com/feed.asp?cmt=538</wfw:commentRss><trackback:ping>http://www.heimian.com/cmd.asp?act=tb&amp;id=538&amp;key=7252a257</trackback:ping></item><item><title>手工注入详解</title><author>3768110@qq.com (admin)</author><link>http://www.heimian.com/post/378.html</link><pubDate>Thu, 11 Mar 2010 23:39:18 +0800</pubDate><guid>http://www.heimian.com/post/378.html</guid><description><![CDATA[<p>1.判断有无注入点 <br />' ; and 1=1 and 1=2<br /><br />2.猜表: 常见的表:admin adminuser user pass password 等.. <br />and 0&lt;&gt;(select count(*) from *) <br />and 0&lt;&gt;(select count(*) from admin) ---判断是否存在admin这张表<br /><br />3.猜帐号数目 如果遇到0&lt; 返回正确页面 1&lt;返回错误页面说明帐号数目就是1个 <br />...</p>]]></description><category>脚本语法</category><comments>http://www.heimian.com/post/378.html#comment</comments><wfw:comment>http://www.heimian.com/</wfw:comment><wfw:commentRss>http://www.heimian.com/feed.asp?cmt=378</wfw:commentRss><trackback:ping>http://www.heimian.com/cmd.asp?act=tb&amp;id=378&amp;key=3bfb0638</trackback:ping></item><item><title>asp.net中各种类型文件解析</title><author>3768110@qq.com (admin)</author><link>http://www.heimian.com/post/236.html</link><pubDate>Sat, 06 Feb 2010 17:57:43 +0800</pubDate><guid>http://www.heimian.com/post/236.html</guid><description><![CDATA[<p>ASP.NET的页面文件是*.aspx，每个页面对应一个*.resx资源文件和一个*.aspx.cs的代码文件。 <br />*.resx是资源文件。每个页面都有一个资源文件相对应。</p><p>global.asax是global.asa的.net版</p><p>global.asax.cs是global.asax的后台文件。</p><p>*.ascx是一个用户自定义控件。</p><p>*.ascx.cs是自定义控件的代码文件，C#的是*.ascx.cs</p><p>*.ascx.resx是自定义控件的资源文件。</p>...]]></description><category>脚本语法</category><comments>http://www.heimian.com/post/236.html#comment</comments><wfw:comment>http://www.heimian.com/</wfw:comment><wfw:commentRss>http://www.heimian.com/feed.asp?cmt=236</wfw:commentRss><trackback:ping>http://www.heimian.com/cmd.asp?act=tb&amp;id=236&amp;key=fdd0c1e5</trackback:ping></item><item><title>PHP语法速查表</title><author>3768110@qq.com (admin)</author><link>http://www.heimian.com/post/phpyufa.html</link><pubDate>Mon, 09 Nov 2009 13:12:07 +0800</pubDate><guid>http://www.heimian.com/post/phpyufa.html</guid><description><![CDATA[<p>php 函式索引 967 个函式<br />共有 967 个函式<br />Abs: 取得绝对值。 <br />Acos: 取得反余弦值。 <br />ada_afetch: 取得资料库的传回列。 <br />ada_autocommit: 开关自动更动功能。 <br />ada_close: 关闭 Adabas D 连结。 <br />ada_commit: 更动 Adabas D 资料库。 <br />ada_connect: 连结至 Adabas D 资料库。 <br />...</p>]]></description><category>脚本语法</category><comments>http://www.heimian.com/post/phpyufa.html#comment</comments><wfw:comment>http://www.heimian.com/</wfw:comment><wfw:commentRss>http://www.heimian.com/feed.asp?cmt=73</wfw:commentRss><trackback:ping>http://www.heimian.com/cmd.asp?act=tb&amp;id=73&amp;key=e808ee35</trackback:ping></item></channel></rss>
