FV.Zone Project Code

国外开源项目网址

sourceforge http://www.sourceforge.net

java.net http://www.java.net

www.eclipse.org

www.opensource.org
Read More »

META标签使用

META标签,是HTML语言head区的一个辅助性标签。在几乎所有的page里,我们都可以看到类似下面这段html代码:

-----------------------------------------------

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

-----------------------------------------------

Read More »

PHP 图形处理函数库

使用本功能需要在编译 PHP 前先安装 GD library。

     Header ( "Content-type: image/gif" );
$im = imagecreate ( 400 , 30 );
$black = ImageColorAllocate ( $im , 0 , 0 , 0 );
$white = ImageColorAllocate ( $im , 255 , 255 , 255 );
imageline ( $im , 1 , 1 , 350 , 25 , $black );
imagearc ( $im , 200 , 15 , 20 , 20 , 35 , 190 , $white );
imagestring ( $im , 5 , 4 , 10 , "Graph TEST!!" , $white );
ImageGif ( $im );
ImageDestroy ( $im );
?&gt; 

Read More »

WordPress之我对theme结构的解读

无聊的时候想写一篇关于WP模板的心得,可能这不算是心得,自己的感受,今天我要写的主要是怎么去下载别人的模板文件放到自己的Blog上,但是这样做好像不太好… Read More »

wordpress之我使用的插件

很久就想写一个关于我使用WP做BLOG平台的心得,可是也一直没有时间。

我建设Blog有半年了,刚开始在国内找程序,试用了很多Blog程序,都以失败告终,让我最深刻的是C-Blog我还做了官方BBS的版主,本来我是一直都支持的,可是…现在官方的资料突然没了,不知道站长是怎么搞的,这几天连站也关了。 Read More »