简洁的想法

仁爱、喜乐、和平、忍耐、恩慈、良善、信实、温柔、节制

威尼斯游记

| Comments

跑过这段长长的桥后,终于进城了。远方是阿尔卑士山,山那边的奥地利盖着一米厚的雪,穿过山到了意大利就是扑面不寒杨柳风了。

奥地利游记 格拉茨 / Graz

| Comments

格拉茨(Graz)是奥地利第二大城市,也是奥地利第二大省施泰尔马克州的省会。格拉茨一词来源自于斯拉夫语,意为“城堡”。这个带有南欧风韵的中欧城市是古典与现代的结合,是欧洲众多城市的一个缩影,被选为2003年欧洲文化首都。

先来张在格拉茨的城堡山(Schlossberg)上的鸟瞰,看到穆尔河(Mur)没有?

奥地利游记 维也纳 美泉宫

| Comments

美泉宫

奥地利哈布斯堡正室的避暑离宫,又称"美泉宫",位于首都维也纳西南部。 美泉宫得名于一眼泉水,这里原是一片开阔的绿地。有一次,马蒂亚斯皇帝狩猎至此,饮一泉水,心神清爽,称此泉为"美丽泉"。70多年后,即1743年,玛丽姬·特蕾西亚女王下令在此建宫,这里便出现了气势磅礴的宫殿和巴罗克式花园。面积2.6万平方米,仅次于法国凡尔赛宫。 宫内有1400个房间,有44间是洛可可式(18世纪欧洲流行的一种纤巧华美的建筑风格),优雅别致,但大多数是巴罗克式(17世纪欧洲流行的一种过分雕琢的建筑风格)。

宫中专门有东方古典式建筑,如嵌镶紫檀、黑檀、象牙的中国式房间和用泥金和涂漆装饰的日本式房间。房间内部的装饰品也以东方风格统一协调,四壁和天花板上镶嵌着陶瓷器。在琳琅满目的陶瓷器摆设中,有中国青瓷、明朝万历彩瓷大盘和措花花瓶等。

首先来张外景

奥地利游记 维也纳

| Comments

维也纳是旅途第一站,我们踏雪而至,她也银装素裹,胜似盖头的新娘,我们纵有万分热情,还是不能融化掉她的白袄。

  • 自然博物馆 **

Firefox中不能用 Cursor:hand

| Comments

firefox中不能用 cursor:hand

style=“cursor:hand;”
在IE中能正常显示成手;在firefox中却不能正常显示

如果改用 style=“cursor:pointer;”
则在两个浏览器下都能正常显示

自己编写的一个PHP单文件或多文件上传类

| Comments

看到网上有很多大虾写了PHP上传类,我综合了一下,写了一个自己喜欢的,提供出来给大家分享。附带了调用代码。

提醒:Form部分要注意,第一记得添加

1
enctype="multipart/form-data"

另外input的name=在上传多文件时要定义为数组,即:

1
uploadinput[]

如果只上传一个文件可以写为

1
name="uploadinput";

Html 部分:

1
2
3
4
5
6
7
<form enctype="multipart/form-data" action="upload_datei.php" method="POST"><br />
Send this file: <br />
<input name="uploadinput[]" type="file"><br />
<input name="uploadinput[]" type="file"><br />
<input name="uploadinput[]" type="file"><br />
<input type="submit" value="Send File"><br />
</form>

例子:

例子 (up.php.txt) download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
//如果收到表单传来的参数,则进行上传处理,否则显示表单
if(isset($_FILES['uploadinput'])){
	//建目录函数,其中参数$directoryName最后没有"/",
	//要是有的话,以'/'打散为数组的时候,最后将会出现一个空值
	function makeDirectory($directoryName) {
		$directoryName = str_replace("\\","/",$directoryName);
		$dirNames = explode('/', $directoryName);
		$total = count($dirNames) ;
		$temp = '';
		for($i=0; $i<$total; $i++) {
			$temp .= $dirNames[$i].'/';
			if (!is_dir($temp)) {
				$oldmask = umask(0);
				if (!mkdir($temp, 0777)) exit("不能建立目录 $temp");
				umask($oldmask);
			}
		}
		return true;
	}

	if($_FILES['uploadinput']['name'] <> ""){
		//包含上传文件类
		require_once ('class_upload.php');
		//设置文件上传目录
		$savePath = "upload";
		//创建目录
		makeDirectory($savePath);
		//允许的文件类型
		$fileFormat = array('gif','jpg','jpge','png');
		//文件大小限制,单位: Byte,1KB = 1000 Byte
		//0 表示无限制,但受php.ini中upload_max_filesize设置影响
		$maxSize = 0;
		//覆盖原有文件吗? 0 不允许  1 允许 
		$overwrite = 0;
		//初始化上传类
		$f = new clsUpload( $savePath, $fileFormat, $maxSize, $overwrite);
		//如果想生成缩略图,则调用成员函数 $f->setThumb();
		//参数列表: setThumb($thumb, $thumbWidth = 0,$thumbHeight = 0)
		//$thumb=1 表示要生成缩略图,不调用时,其值为 0
		//$thumbWidth  缩略图宽,单位是像素(px),留空则使用默认值 130
		//$thumbHeight 缩略图高,单位是像素(px),留空则使用默认值 130
		$f->setThumb(1);
		
		//参数中的uploadinput是表单中上传文件输入框input的名字
		//后面的0表示不更改文件名,若为1,则由系统生成随机文件名
		if (!$f->run('uploadinput',0)){
			//通过$f->errmsg()只能得到最后一个出错的信息,
			//详细的信息在$f->getInfo()中可以得到。
			echo $f->errmsg()."<br>\n";
		}
		//上传结果保存在数组returnArray中。
		echo "<pre>";
		print_r($f->getInfo());
		echo "</pre>";
	}
}else{
?>
<form enctype="multipart/form-data" action="" method="POST">
Send this file: <br />
<input name="uploadinput[]" type="file"><br />
<input name="uploadinput[]" type="file"><br />
<input name="uploadinput[]" type="file"><br />
<input type="submit" value="Send File"><br />
</form> 
<?php
}
//我们上传一个已经存在了的图片文件,
//一个正常的图片文件,和一个不允许上传的文件,
//输出结果如下
/*
The uploaded file is Unallowable!

Array
(
    [0] => Array
        (
            [name] => boy.jpg
            [saveName] => boy.jpg
            [size] => 137
            [type] => image/pjpeg
            [error] => File exist already!
        )

    [1] => Array
        (
            [name] => girl.JPG
            [saveName] => girl.JPG
            [size] => 31
            [type] => image/pjpeg
            [originalHeight] => 450
            [originalWidth] => 600
        )

    [2] => Array
        (
            [name] => test.wma
            [saveName] => test.wma
            [size] => 971
            [type] => audio/x-ms-wma
            [error] => The uploaded file is Unallowable!
        )

)
*/
?>

类文件:

例子 (class_upload.php.txt) download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php /*
		○︿
		︶\
		 √ ﹀ . 。o O . ~~
=====================================================
=	TITLE       : CLASS clsUpload
=	FILE        : class_upload.php
=	DESCRIPTION : To provide upload utility,
=	AUTHOR      : Peng Zhang zpregister()gmail.com
=	                http://blog.neten.de
=	BASED ON    : whxbb whxbb()21cn.com
=	WRITED      : 2005 NOV 20
=	MODIFIED    : 2006 MAR 01
=	LICENCE     : GPL
=	REVISION    : V1.0.2
=====================================================
*/
class clsUpload{
	var $saveName;// 保存名
	var $savePath;// 保存路径
	var $fileFormat = array('gif','jpg','doc','application/octet-stream');// 文件格式&MIME限定
	var $overwrite = 0;// 覆盖模式
	var $maxSize = 0;// 文件最大字节
	var $ext;// 文件扩展名
	var $thumb = 0;// 是否生成缩略图
	var $thumbWidth = 130;// 缩略图宽
	var $thumbHeight = 130;// 缩略图高
	var $thumbPrefix = "_thumb_";// 缩略图前缀
	var $errno;// 错误代号
	var $returnArray= array();// 所有文件的返回信息
	var $returninfo= array();// 每个文件返回信息


// 构造函数
// @param $savePath 文件保存路径
// @param $fileFormat 文件格式限制数组
// @param $maxSize 文件最大尺寸
// @param $overwriet 是否覆盖 1 允许覆盖 0 禁止覆盖
	function clsUpload($savePath, $fileFormat='',$maxSize = 0, $overwrite = 0) {
		$this->setSavepath($savePath);
		$this->setFileformat($fileFormat);
		$this->setMaxsize($maxSize);
		$this->setOverwrite($overwrite);
		$this->setThumb($this->thumb, $this->thumbWidth,$this->thumbHeight);
		$this->errno = 0;
	}

// 上传
// @param $fileInput 网页Form(表单)中input的名称
// @param $changeName 是否更改文件名
	function run($fileInput,$changeName = 1){
		if(isset($_FILES[$fileInput])){
			$fileArr = $_FILES[$fileInput];
			if(is_array($fileArr['name'])){//上传同文件域名称多个文件
				for($i = 0; $i < count($fileArr['name']); $i++){
					$ar['tmp_name'] = $fileArr['tmp_name'][$i];
					$ar['name'] = $fileArr['name'][$i];
					$ar['type'] = $fileArr['type'][$i];
					$ar['size'] = $fileArr['size'][$i];
					$ar['error'] = $fileArr['error'][$i];
					$this->getExt($ar['name']);//取得扩展名,赋给$this->ext,下次循环会更新
					$this->setSavename($changeName == 1 ? '' : $ar['name']);//设置保存文件名
					if($this->copyfile($ar)){
						$this->returnArray[] =  $this->returninfo;
					}else{
						$this->returninfo['error'] = $this->errmsg();
						$this->returnArray[] =  $this->returninfo;
					}
				}
				return $this->errno ?  false :  true;
			}else{//上传单个文件
				$this->getExt($fileArr['name']);//取得扩展名
				$this->setSavename($changeName == 1 ? '' : $fileArr['name']);//设置保存文件名
				if($this->copyfile($fileArr)){
					$this->returnArray[] =  $this->returninfo;
				}else{
					$this->returninfo['error'] = $this->errmsg();
					$this->returnArray[] =  $this->returninfo;
				}
				return $this->errno ?  false :  true;
			}
			return false;
		}else{
			$this->errno = 10;
			return false;
		}
	}

// 单个文件上传
// @param $fileArray 文件信息数组
	function copyfile($fileArray){
		$this->returninfo = array();
		// 返回信息
		$this->returninfo['name'] = $fileArray['name'];
		$this->returninfo['saveName'] = $this->saveName;
		$this->returninfo['size'] = number_format( ($fileArray['size'])/1024 , 0, '.', ' ');//以KB为单位
		$this->returninfo['type'] = $fileArray['type'];
		// 检查文件格式
		if (!$this->validateFormat()){
			$this->errno = 11;
			return false;
		}
		// 检查目录是否可写
		if(!@is_writable($this->savePath)){
			$this->errno = 12;
			return false;
		}
		// 如果不允许覆盖,检查文件是否已经存在
		if($this->overwrite == 0 && @file_exists($this->savePath.$fileArray['name'])){
			$this->errno = 13;
			return false;
		}
		// 如果有大小限制,检查文件是否超过限制
		if ($this->maxSize != 0 ){
			if ($fileArray["size"] > $this->maxSize){
				$this->errno = 14;
				return false;
			}
		}
		// 文件上传
		if(!@copy($fileArray["tmp_name"], $this->savePath.$this->saveName)){
			$this->errno = $fileArray["error"];
			return false;
		}elseif( $this->thumb ){// 创建缩略图
			$CreateFunction = "imagecreatefrom".($this->ext == 'jpg' ? 'jpeg' : $this->ext);
			$SaveFunction = "image".($this->ext == 'jpg' ? 'jpeg' : $this->ext);
			if (strtolower($CreateFunction) == "imagecreatefromgif"
				&& !function_exists("imagecreatefromgif")) {
				$this->errno = 16;
				return false;
			} elseif (strtolower($CreateFunction) == "imagecreatefromjpeg"
				&& !function_exists("imagecreatefromjpeg")) {
				$this->errno = 17;
				return false;
			} elseif (!function_exists($CreateFunction)) {
				$this->errno = 18;
				return false;
			}
				
			$Original = @$CreateFunction($this->savePath.$this->saveName);
			if (!$Original) {$this->errno = 19; return false;}
			$originalHeight = ImageSY($Original);
			$originalWidth = ImageSX($Original);
			$this->returninfo['originalHeight'] = $originalHeight;
			$this->returninfo['originalWidth'] = $originalWidth;
			if (($originalHeight < $this->thumbHeight
				&& $originalWidth < $this->thumbWidth)) {
				// 如果比期望的缩略图小,那只Copy
				copy($this->savePath.$this->saveName,
					$this->savePath.$this->thumbPrefix.$this->saveName);
			} else {
				if( $originalWidth > $this->thumbWidth ){// 宽 > 设定宽度
					$thumbWidth = $this->thumbWidth ;
					$thumbHeight = $this->thumbWidth * ( $originalHeight / $originalWidth );
					if($thumbHeight > $this->thumbHeight){// 高 > 设定高度
						$thumbWidth = $this->thumbHeight * ( $thumbWidth / $thumbHeight );
						$thumbHeight = $this->thumbHeight ;
					}
				}elseif( $originalHeight > $this->thumbHeight ){// 高 > 设定高度
					$thumbHeight = $this->thumbHeight ;
					$thumbWidth = $this->thumbHeight * ( $originalWidth / $originalHeight );
					if($thumbWidth > $this->thumbWidth){// 宽 > 设定宽度
						$thumbHeight = $this->thumbWidth * ( $thumbHeight / $thumbWidth );
						$thumbWidth = $this->thumbWidth ;
					}
				}
				if ($thumbWidth == 0) $thumbWidth = 1;
				if ($thumbHeight == 0) $thumbHeight = 1;
				$createdThumb = imagecreatetruecolor($thumbWidth, $thumbHeight);
				if ( !$createdThumb ) {$this->errno = 20; return false;}
				if ( !imagecopyresampled($createdThumb, $Original, 0, 0, 0, 0,
					$thumbWidth, $thumbHeight, $originalWidth, $originalHeight) )
					{$this->errno = 21; return false;}
				if ( !$SaveFunction($createdThumb,
					$this->savePath.$this->thumbPrefix.$this->saveName) )
					{$this->errno = 22; return false;}
			}
		}
		// 删除临时文件
		if(!@$this->del($fileArray["tmp_name"])){
			return false;
		}
		return true;
	}

// 文件格式检查,MIME检测
	function validateFormat(){
		if(!is_array($this->fileFormat)
			|| in_array(strtolower($this->ext), $this->fileFormat)
			|| in_array(strtolower($this->returninfo['type']), $this->fileFormat) )
			return true;
		else
			return false;
	}
// 获取文件扩展名
// @param $fileName 上传文件的原文件名
	function getExt($fileName){
		$ext = explode(".", $fileName);
		$ext = $ext[count($ext) - 1];
		$this->ext = strtolower($ext);
	}

// 设置上传文件的最大字节限制
// @param $maxSize 文件大小(bytes) 0:表示无限制
	function setMaxsize($maxSize){
		$this->maxSize = $maxSize;
	}
// 设置文件格式限定
// @param $fileFormat 文件格式数组
	function setFileformat($fileFormat){
		if(is_array($fileFormat)){$this->fileFormat = $fileFormat ;}
	}

// 设置覆盖模式
// @param overwrite 覆盖模式 1:允许覆盖 0:禁止覆盖
	function setOverwrite($overwrite){
		$this->overwrite = $overwrite;
	}


// 设置保存路径
// @param $savePath 文件保存路径:以 "/" 结尾,若没有 "/",则补上
	function setSavepath($savePath){
		$this->savePath = substr( str_replace("\\","/", $savePath) , -1) == "/"
		? $savePath : $savePath."/";
	}

// 设置缩略图
// @param $thumb = 1 产生缩略图 $thumbWidth,$thumbHeight 是缩略图的宽和高
	function setThumb($thumb, $thumbWidth = 0,$thumbHeight = 0){
		$this->thumb = $thumb;
		if($thumbWidth) $this->thumbWidth = $thumbWidth;
		if($thumbHeight) $this->thumbHeight = $thumbHeight;
	}

// 设置文件保存名
// @param $saveName 保存名,如果为空,则系统自动生成一个随机的文件名
	function setSavename($saveName){
		if ($saveName == ''){  // 如果未设置文件名,则生成一个随机文件名
			$name = date('YmdHis')."_".rand(100,999).'.'.$this->ext;
		} else {
			$name = $saveName;
		}
		$this->saveName = $name;
	}

// 删除文件
// @param $fileName 所要删除的文件名
	function del($fileName){
		if(!@unlink($fileName)){
			$this->errno = 15;
			return false;
		}
		return true;
	}

// 返回上传文件的信息
	function getInfo(){
		return $this->returnArray;
	}

// 得到错误信息
	function errmsg(){
		$uploadClassError = array(
			0	=>'There is no error, the file uploaded with success. ',
			1	=>'The uploaded file exceeds the upload_max_filesize directive in php.ini.',
			2	=>'The uploaded file exceeds the MAX_FILE_SIZE that was specified in the HTML form.',
			3	=>'The uploaded file was only partially uploaded. ',
			4	=>'No file was uploaded. ',
			6	=>'Missing a temporary folder. Introduced in PHP 4.3.10 and PHP 5.0.3. ',
			7	=>'Failed to write file to disk. Introduced in PHP 5.1.0. ',
			10	=>'Input name is not unavailable!',
			11	=>'The uploaded file is Unallowable!',
			12	=>'Directory unwritable!',
			13	=>'File exist already!',
			14	=>'File is too big!',
			15	=>'Delete file unsuccessfully!',
			16	=>'Your version of PHP does not appear to have GIF thumbnailing support.',
			17	=>'Your version of PHP does not appear to have JPEG thumbnailing support.',
			18	=>'Your version of PHP does not appear to have pictures thumbnailing support.',
			19	=>'An error occurred while attempting to copy the source image . 
					Your version of php ('.phpversion().') may not have this image type support.',
			20	=>'An error occurred while attempting to create a new image.',
			21	=>'An error occurred while copying the source image to the thumbnail image.',
			22	=>'An error occurred while saving the thumbnail image to the filesystem. 
					Are you sure that PHP has been configured with both read and write access on this folder?',
			);
		if ($this->errno == 0)
			return false;
		else
			return $uploadClassError[$this->errno];
	}
}
?>

火星文字

| Comments

下面这段代码(也就是某些人形容的火星文字)可以用来生成一个竖直方向可展开的菜单,兼容IE,Firefox,Oprea。写这段小小的代码,我可是走了不少弯路。


1,关于javascript:

eval()函数在Firefox中居然不起作用,而且它对onclick()事件也不能很好支持。还好程序员都有共享精神,在网上我找到了一段讲述类似问题的代码,虽然不能直接解决我的问题,但毕竟知道问题出在onclick()和eval()函数上。接下来,调试了半天还是点不动菜单,我几乎要放弃了,后来,凭一点直觉,小改了一下代码,居然成功了。要点一个是event,一个是getElementById,大家可以看代码。


另外打开页面时加载的javascript函数也要特殊处理,一是调用函数的代码位置要在定义函数的代码位置之后,二是要用window.onload=function(){showsubmenu(0);}的形式调用,如果写window.onload=showsubmenu(0);是会没有反应的。


2,关于CSS:

我觉得自己不是一个完美主义者,但为了符合W3C的网页标准,我花了几乎是平时几倍的时间和精力在IE,Firefox,Oprea上调试,看看是不是有相同的显示效果。在CSS的leftnav类中,我开始定义了高度,也就是背景图片的高度。结果点开菜单的时候,在IE正常,在Firefox中展开的部分居然和下面的内容重合。后来在一个不起眼的网页上发现了这个heigh的定义是要不得的。此外我还添加了overflow:hidden;这样改动过后,在所有浏览器都OK了。



程序员也许就是这样在痛苦中长大的吧。



下面是代码,作为菜单的背景图片可以下载后放在images目录下。


图片名称:menuup.gif
http://storage.msn.com/x1p4JHjVbcjTC_Nig_zG1Xqcvwreb8OUOSpeIZstOkVIuPwIBq85F0lCqYNdRbfIStYsNjYBhj0SOEvQy2QSb8S8IDmcLY3CyNP2VLUhVkaJaDQlvR7S2c3hNajOhSncExPte82enbHrMld-k83qGf0Ag

图片名称:menudown.gif
http://storage.msn.com/x1p4JHjVbcjTC_Nig_zG1Xqcvwreb8OUOSpeIZstOkVIuMgfL8Z1P6hLyyv2s1jkQxLNUFwRVcutnL-3VzfiGow0ObavUaOsxoFVXgePurkicTiUSKjEZbILr3qBza2xRAI21cUjIlyGPqlbpy37IBYag



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head><title>菜单</title>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META content="ZhangPeng" name="author">
<script language="javascript">
function showsubmenu(sid,evt){
   evt = evt ? evt : (window.event ? window.event : null);
   if (document.getElementById("submenu" + sid).style.display == "none"){
       document.getElementById("submenu" + sid).style.display = "block";
       document.getElementById("imgmenu" + sid).style.background= 'url(images/menuup.gif)';
   }else{
       document.getElementById("submenu" + sid).style.display = "none";
       document.getElementById("imgmenu" + sid).style.background= 'url(images/menudown.gif)';
   }
}
</script>
<style type="text/css">
UL.leftnav{
   margin:5px auto 0px;
   font: 14px verdana,geneva,arial,helvetica,sans-serif;
   width: 170px;
   PADDING: 5px 0px 0px 0px ;
   background: url("images/menudown.gif");
   text-align: left;
   LIST-STYLE-TYPE:none;
   cursor: hand;
   overflow:hidden;
   }
A.navalpha {
   MARGIN:     0px;
   DISPLAY:     block;
   BORDER:     0px;
   BACKGROUND-COLOR:#d6dff7;
   PADDING: 5px 0px 3px 10px ;
   COLOR:         #000;
   FONT-WEIGHT:     normal;
   TEXT-ALIGN:     left;
   TEXT-DECORATION:none;
   WIDTH:         100%;
   font: 12px verdana,geneva,arial,helvetica,sans-serif;
}
A.navalpha:visited {
   BACKGROUND-COLOR: #d6dff7;
}
A.navalpha:hover {
   BACKGROUND-COLOR:    #E4E4E4;
   color: #EC870E;
   font: 12px verdana,geneva,arial,helvetica,sans-serif;
}
</style>
</head>
<body>
<div>
   <span id="imgmenu0"></span>
   <span id="submenu0"></span>
   <UL id="imgmenu1" class="leftnav" onclick="showsubmenu(1,event)" ><span style="padding-left:8px" >修改注册信息</span>
       <div id="submenu1" style="display: block;">
           <li><a class="navalpha" href="#">基本信息</a></li>
           <li><a class="navalpha" href="#">安全信息</a></li>
           <li><a class="navalpha" href="#">附加信息</a></li>
       </div>
   </ul>

   <ul id="imgmenu2" class="leftnav" onclick="javascript:showsubmenu(2,event)"><span style="padding-left: 8px;">帖子管理</span>
       <div id="submenu2" style="display: none;">
           <li><a class="navalpha" href="#">需求信息</a></li>
           <li><a class="navalpha" href="#">供应信息</a></li>
       </div>
   </ul>
   <script>window.onload=function(){showsubmenu(0);}</script>
</div>
</body></html>

秋叶飘零

| Comments

今天下午去教会的路上,看到秋叶随风,不禁想到辛晓琪的《遗忘》:
受伤的叶子,听见季节的吩咐,跳下了深爱的大树……
这首歌的其它部分记不得了,名字也是百度出来的,但那伤感浪漫的开头却随景蹦出,好像不能拒绝。

天蓝草绿,叶黄风轻,我的心情却像是树从中射过来的阳光。叶子当然要在今年最后的舞台上绚丽一把:有的叶子在天空正打旋降落,有的已经三两片在地上与风闲游,还有的就在我的脚下,沙沙的唱着歌。

其实心情是自己的,与景无关,我好像从未悲过秋。记得初中语文课有一道典型的语法题,就是问“我走过快乐的小树林”是用的什么修辞手法。你还记得吗?不记得不要紧,只要看身边的一切是快乐的就可以了。功力不够可能还是很难看出来的。。。谁要是很阿Q地说看出来了,那他自己都不会信的,除非是阿甘。

困苦人的日子都是愁苦,心中欢畅的,常享丰筵。(箴言 15 : 15)

Will You Mary Me ?

| Comments

刚看到一个朋友 Blog 上的 Nokia 广告,内容是一个男人用来求婚的MMS短信,很有创意。
生活真的是从来不缺少什么,只是用心寻找的人不多。

大家看归看,那款巨老无比的 Nokia 大家就不要买了啊,不要说我是托。。。

EmEditor

| Comments

网址:http://www.emeditor.com/
申请:http://www.emurasoft.com/academic/

EmEditor是我至今为止发现的Windows下最好用的文本编辑器,启动速度快,功能强大,特别是正则搜索替换功能,使我收益不少。不得不提的是编辑PHP网页的时候,可以选择UTF-8,并且可以在文件头不加入UTF-8标记,在用到Session功能的时候,这一点就变得非常重要了。

学生可以得到 Emurasoft academic/technical license,我从申请到收到注册号不到一周。

EmEditor给我的回信如下:

Thank you for applying for the Emurasoft academic/technical license.

Your personal Registration Keys:
   for EmEditor Standard/v3 : xxxx-xxxx-xxxx-xxxx
   for EmEditor Professional : xxxx-xxxx-xxxx-xxxx
   for EmFTP Professional : xxxx-xxxx-xxxx-xxxx

You have been assigned your own unique registration key.  Please keep
the registration key in a private, secure place. If you registered
more than one copy of EmEditor/EmFTP, the registration key you received
is good for all the copies. You will not need a separate key for each
copy.

You have agreed to pay the proper registration fee if you continue
using EmEditor/EmFTP after you no longer qualify for the
academic/technical
license. Please honor that agreement so that we can continue to offer
EmEditor/EmFTP for free.

To enter the EmEditor/EmFTP registration key, select [About] on the
[Help] menu, click the [About Registration] button, and click
[Register] to enter the key.

If you have any questions or comments about EmEditor, please use
our forums or mailing list.

If you are a webmaster, please consider spreading the word about
EmEditor/EmFTP on your web site. You can use our EmEditor or Emurasoft
logo downlodable from http://www.emurasoft.com/buttons.zip .
You can use any of these graphic files to display a hyperlink to
http://www.emeditor.com/ .

Thank you again for using our software.