Author: 迎迎 姚

  • Google和百度站内搜索代码

    Google和百度站内搜索代码

    <!–Google站内搜索开始–> <form method=get action=”http://www.google.com/search”> <input type=text name=q> <input type=submit name=btnG value=”Google 搜索”> <input type=hidden name=ie value=utf-8> <input type=hidden name=oe value=utf-8> <input type=hidden name=hl value=zh-CN> <input type=hidden name=domains value=”yaoyingying.com”> <input type=hidden name=sitesearch value=”yaoyingying.com”> </form> <!–Google站内搜索结束–>

  • 简单日历程序

    简单日历程序

    刚开始学程序设计那会儿写的,拿出来留恋一下。呵呵! <form action=”rili.php” enctype=”application/x-www-form-urlencoded” method=”post”> 月份 <select multiple=”65535″ name=”mon” size=”0″> <option value=”‘.$m.'”>’.$m.'</option> </select> 年份 <?php echo ‘<input size=”5″ name=”year” type=”text” value=”‘.date(Y).'”>’; ?> <input name=”Submit” type=”submit” value=”提交” /> <input name=”Submit2″ type=”reset” value=”重置” /> </form> <?php date_default_timezone_set(‘UTC’);//自动获取当地的时区 $mon=$_POST[‘mon’]; $year=$_POST[‘year’]; $a=mktime(0,0,0,$mon,01,$year); $daynum = date(t,$a);//一共28天 , $firstday=date(w,$a);//第一天是星期4, echo $daynum .” – “; echo $firstday; echo ‘<div style=”border:#FF6600 solid 1px;…

  • 教你怎么把骗子搞哭

    教你怎么把骗子搞哭

    教你怎么把骗子搞哭  1.收到骗子要你汇款的短信后先别忙著删除,看看他的卡号是什么银行的,并登陆此银行的网上营业厅,  2.输入该骗子的卡号,密码随便填写,只要3次错误,此卡在24小时之间是不能进行任何的交易了(就是被冻结了),,他就等吧,你看他不爽就天天给他来3次,叫他再骗人!!请各位发到其他论坛和各种QQ群~让坏人无法得逞!!! 如果运气超级,密码对了,请你把钱转到災區  。实在是经济有困难的就转给自己。   请你转发,让大家都知道怎么调戏骗子,快乐接力  真是讲得好啊,这个方法不错,大家多利用,省时省力与坏人坏事做斗争

  • 正则表达式使用详解

    正则表达式使用详解

    如果我们问那些UNIX系统的爱好者他们最喜欢什么,答案除了稳定的系统和可以远程启动之外,十有八九的人会提到正则表达式;如果我们再问他们最头痛的是 什么,可能除了复杂的进程控制和安装过程之外,还会是正则表达式。那么正则表达式到底是什么?如何才能真正的掌握正则表达式并正确的加以灵活运用?本文将 就此展开介绍,希望能够对那些渴望了解和掌握正则表达式的读者有所助益。

  • Protected: 动感聚焦Flash图片轮播

    Protected: 动感聚焦Flash图片轮播

    There is no excerpt because this is a protected post.

  • Mysql ALTER TABLE 操作

    Mysql ALTER TABLE 操作

    这里是一个例子,显示了一些ALTER TABLE用法。我们以一个如下创建的表t1开始: mysql> CREATE TABLE t1 (a INTEGER,b CHAR(10));

  • 我的十年感言

    我的十年感言

    【回忆1998年】 年轻啊 ! 【回忆1999年】 年轻的时候真他嘛的傻

  • ubuntu server 8.04 安装webmin

    ubuntu server 8.04 安装webmin

    webmin是一个非常强大的Linux服务器管理工具。使用webmin在浏览器下就可以管理你的服务器。 下面结合我的安装经验,谈一下ubuntu 8.04 server下的webmin安装。

  • XAMPP 的 Linux 版 (x86 兼容处理器版)

    XAMPP 的 Linux 版 (x86 兼容处理器版)

    XAMPP 的 Linux 版 1.7, 2008年 12月 21日 http://jaist.dl.sourceforge.net/sourceforge/xampp/xampp-linux-1.7.tar.gz

  • How to reset the mySQL admin password

    How to reset the mySQL admin password

    怎么重置MYSQL 的管理员密码 在linux 环境下,重置root 密码主要通过以下几个方面: How to reset the mySQL admin password In a Unix environment, the procedure for resetting the root password is as follows: 1. Log on to your system as either the Unix root user or as the same user that the mysqld server runs as. 2. Locate the .pid file that…