Author: 迎迎 姚
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;…
Mysql ALTER TABLE 操作
这里是一个例子,显示了一些ALTER TABLE用法。我们以一个如下创建的表t1开始: mysql> CREATE TABLE t1 (a INTEGER,b CHAR(10));
ubuntu server 8.04 安装webmin
webmin是一个非常强大的Linux服务器管理工具。使用webmin在浏览器下就可以管理你的服务器。 下面结合我的安装经验,谈一下ubuntu 8.04 server下的webmin安装。
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
怎么重置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…