Hacker 态度
Hacker 们解决了问题并创造新东西, 他们相信自由并自愿的互相帮助. 想要被别人接受成为一位 hacker, 你必须发自内心的表现出这种态度. 为了要很自发的表现出这种态度, 你就必须先完全认同这些态度.
如果你只是把学习 hacker 态度这件事当作一种能在这个文化赢得认同的途径,那么你己经乎略了真正的重点. 由衷的接受这些态度是很这要的, 这能帮助你学习并维持你的动机. 就像那些具创造性的艺术一样, 成为一位
阅读全文
类别:黑客 查看评论
文章来源:http://hi.baidu.com/slog/blog/item/0c15b3456a737622cefca3d5.html

posted @ 2008-04-03 17:52 UPEY! 阅读(84) | 评论 (0)编辑 收藏

 如何创建我们的第一个PHP页面呢?非常简单的!选择我们使用的一个最好的设计工具,当然你也可以 只使用记事本。创建之后记得要保存为扩展名为PHP的文件,然后传到我们的服务器上。

  在编写PHP程序之前通常我们需要配置我们的环境,也就是说服务器要支持PHP才能行啊

  一、PHP的基本结构:

  使用Include函数

<Html>
<Head>
<title>Your page Subject and domain name</title>

  上面内容为我们使用的每个页面的标题,不要动。

  每个页的头部:

<Meta NAME="" CONTENT="">
"" your others meta tag
"" your others meta tag
"" your others meta tag
"" your others meta tag
"" your others meta tag
"" your others meta tag
"" your others meta tag
重要的javascripts代码放这
CSS设置放这

  上述内容保存为header.php,使每个页面的头部都是一样的。

<?PHP include("header.php")?>

</head>
<body>

  你的页的所有内容

</body>
</html>

  保存为footer.php,使每个页面的底部都一样。

<? include("footer.php");?>

  填写我们的版权信息

</body>
</html>

 

  二:如何输出文本或者把文本建立连接用PHP

  在PHP中如何显示文本呢?使用下面的命令:

<?php echo "Hello in php";?>

  如何创建一个连接呢?

<?php echo "<a href=\"http://www.webjx.com\">www.webjx.com.com</a>";?>

  如何创建一个有style的连接呢?

<?php echo "<font style=\"color:blue;font-size:10px;font- family:verdana;\">Free Scripts By: <a href=\"http://www.webjx.com.com\" target=\"_blank\" title=\"Free Scripts By: webjx.com\">http://www.webjx.com</font></a>";?>

 "echo"是用来显示输出的。

 

 

  三:如何实现分页:

  如果好多内容在你的页面中这时我们就考虑用分页形式来实现显示了。

  简单的分页代码:

<html>
<head>
<title>webjx.com</title>
</head>
<body text="#000000">
<center>
<table width="500" border="3">
<tr>
<td width="140" height="400" valign="top">
<p align="center">
<a href='index.php'>home</a><br />
<a href='index.php?p=Page1'>page 1</a><br />
<a href='index.php?p=Page2'>page 2</a><br />
</p></td>
<td width="360" height="400" valign="top">
<p>
<?
function index()
{
echo "<p align=center>Welcome to this tutorial<br />Here you can find funny
tricks</p><br /><br /><br /><br /><br /><br />"; }
$choice=$_GET['p'];

switch($choice)
{
case "Page1":

echo "<p align=center>Page1 text, img and so on here</p>";
break;

case "Page2":

echo "<p align=center>Page2 text, img and so on here</p>";
break;

default:
index();
}

?>

</p>
</td>
</tr>
</table> </center>
</body>
</html>

  以上文件必须保存为index.php

  高级分页的代码:

<html>
<head>
<title>webjx.com</title>
</head>
<body text="#000000">
<center>
<table width="500" border="3">
<tr>
<td width="140" height="400" valign="top">
<p align="center">
<a href='index.php'>home</a><br />
<a href='index.php?action=contact_us'>page 1</a><br />
<a href='index.php?action=link_us'>page 2</a><br />
</p></td>
<td width="360" height="400" valign="top">
<p>
<?

if (isset($_GET['action'])) $PAGE = $_GET['action'];

else $PAGE = 'home';
switch ($PAGE) {
//1- index
case 'home':
include ('incl/home.php');
break;

//2-contact form
case 'contact_us':
include ('incl/contact_us.php');
break;
//3-Link us
case 'link_us':
include ('incl/link_us.php');
break;
default:
echo '<p align=center>Error 404! the page you request doesn t exist or as been temporarely unaccessible</p>';
break;
}

?>

</p>
</td>
</tr>
</table>
</center>
</body>
</html>

  提供了演示的下载,请自己去试试!

 

 

  四:页面加载时间的代码:

<?php

echo ("Page Took :");
$load = microtime();
print (number_format($load,2));
echo (" Sec To Load.");

?>

 

  五:显示从哪个地址转到你当前访问的站的代码:

<?php

echo "You Came From:<br />";
echo $_SERVER['HTTP_REFERER'];
?>

 

  六:设置IP地址的转向:屏蔽IP

<?php

if(($REMOTE_ADDR == "22.22.22.22")):// ip address

print "<meta http-equiv='refresh' content='0; url=http://www.sina.com'>";// url to redicted
endif;
?>

 

  七:随即显示标题的代码:

<Title><?php include("title.php");?></Title>

  要事先做一个title.php文件啊

 

 

  八;如何用PHP来建立一个HTML 的table

<?php
echo"<html>\n";
echo"<head>\n";
echo"<title>allo</TITLE>\n";
echo"</head>\n";
echo"<body topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"5\"
bgcolor=\"#ffffff\">\n";
echo"<center>\n";
echo"<table width=\"500\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n";
echo"<tr>\n";
echo"<td>\n";
echo"<p align=\"center\">\n";
echo"
\n";
echo"Text Goes Here\n";
echo"</p>\n";
echo"</td>\n";
echo"</tr>\n";
echo"</table>\n";
echo"</center>";
echo"</body>\n";
echo"</html>";
?>

 

  九、声明字符串变量:

  建立一个页面 ( config.php ) 粘贴下面代码:

<?
$name="Name";
$salutation="Hey!";
$title="webjx.com";
$copyrights="©2005 webjx.com";
$link_1="Home";
?>

  创建一个页面( test.php )把下列代码

<? include("config.php");?>

  放在<html><head>之前,然后在test.php页里来调用上面的字符串

<p align="center"><? echo("$title");?></p>

  也可以这样来声明:

<?
$surname1="Marco"; $lastname1="Charette";
?>

  调用:

<? echo("$surname1 $lastname1");?>

 

  十、显示你的服务器的信息:

<? phpinfo(); ?>

  十一:实现页面的跳转:

  创建"jump.php"页面并且设置变量来隐藏连接的地址

<?
if ($id == "1"){$link = "http://webjx.com";}
if ($id == "2"){$link = "http://google.com";}

header("Location: $link"); // 实现了跳转
exit();
?>

  保存之后,在另外一个页中加入如下代码:

<a href="jump.php?id=1">Visit This Link</a>

  跳转并且还把访客保存在你的页面内:

<?
if ($id == "1"){$link = "http://webjx.com";}
if ($id == "2"){$link = "http://google.com";}

echo "<frameset rows=\"0,100%\" border=\"0\">\n";
echo "<frame src=\"jump.php\" name=\"head\" scrolling=\"no\" marginheight=\"0\" frameborder=\"0\" noresize>\n";
echo "<frame src=\"$link\" name=\"body\" marginheight=\"10\" marginwidth=\"10\" frameborder=\"0\" noresize>\n";
echo "</frameset>\n";

header("Location: $link");
exit();
?>

  保存为jump.php然后再其他页内加入连接代码:

<a href="jump.php?id=1">Visit This Link</a>

  十二、保护页面:

<? $Referer = getenv("HTTP_REFERER");
if (!strchr($Referer, "http://webjx.com/page.php")) {
echo "<script>alert('你不能访问这个页面');
window.location='http://webjx.com';</script>";
exit(); } ?>

  十三:限制访问某个页面

// choose a user name and password between the " " symbol
//===========================
$admin_user_name="admin"; // your admin username
$admin_password="pass"; // your password
$site_com="webjx.com"; // your website name WITHOUT http:// and www
$login="你已经登陆"; // succesful message when user are logged in ( NOT NECESSARY )
//===========================

// DO NOT EDIT NOTHING BELOW!

if ((!isset($PHP_AUTH_USER)) || (!isset($PHP_AUTH_PW))) {

/* No values: send headers causing dialog box to appear */

header('WWW-Authenticate: Basic realm="$site_com"');

header('HTTP/1.0 401 Unauthorized');

echo '<h1>访问的页面被限制.</h1>请检查你的用户名或密码是否正确,正常登陆本站才能查看 本站的内容';
exit;

} else if ((isset($PHP_AUTH_USER)) && (isset($PHP_AUTH_PW))){
/* Values contain some values, so check to see if they're correct */

if (($PHP_AUTH_USER != "$admin_user_name") || ($PHP_AUTH_PW != "$admin_password")) { /* If either the username entered is incorrect, or the password entered is incorrect, send the headers causing dialog box to appear */

header('WWW-Authenticate: Basic realm="$site_com"');
header('HTTP/1.0 401 Unauthorized');
echo '<h1>访问的页面被限制.</h1>请检查你的用户名或密码是否正确,正常登陆本站才能查看 本站的内容';
exit;
} else if (($PHP_AUTH_USER == "$admin_user_name") || ($PHP_AUTH_PW == "$admin_password")) { echo "$login<br />";
}
}

?>

  保存为log.php,把下列代码加到head页内,那么将会保护所有的页面。

<? require("log.php");?>

  十四、制作一个自动转向:

<?php

header("Refresh:0; url=http://webjx.com");

?>

  必须保存为php文件才可以。

  十五。制作用户列表:

<?
$customer[0] = 'webjx';
$customer[1] = 'web';
$customer[2] = 'mutou';
$customer[3] = 'chuxia';
$customer[4] = 'shenhua';
echo "第3个用户是: $customer[2]";

echo "<br /><br />所有的用户:<br /><br />";

$number = 5;
$x = 0;
while ($x < $number) {
$customernumber = $x + 0;
echo "Costumer Name $customernumber is $customer[$x]<br />";
++$x;
}
?>
将会显示:
The third customer is mutou

所有的用户:

Costumer Name 0 is webjx
Costumer Name 1 is web
Costumer Name 2 is mutou
Costumer Name 3 is chuxia
Costumer Name 4 is shenhua

  另一种读取数组的方法:

<?
echo "3 of my customer are: $customer[0], " . " $customer[1] and " . " $customer[2]. " . "<br />";
?>

将会显示:
3 of my customer are: webjx, web and mutou.

  十六.统计某个目录下文件的数量:

<?
echo("There is ");
$dir = "/path/to/the/folder/in/your/computer ";
$count = 0;
$handle=opendir($dir);
while (($file = readdir($handle))!== false){ if ($file != "." && $file != "..") { $count++; }}
echo $count;

echo(" Pages For You To Search In This Directory.");
?>

  十七.显示当前日期或最新更新的日期:

<?php echo date("F d Y"); ?>

显示更新日期:

<?php echo "Last Modified: " . date ("m/d/y.", getlastmod());?>

  十八.重复一个字符多次的代码:


<?
echo str_repeat("-", 30);
?>

posted @ 2008-04-01 19:08 UPEY! 阅读(105) | 评论 (0)编辑 收藏

五大理由,你应该马上停止玩魔兽世界

  1.买不完的魔兽点卡

  我们都知道在魔兽世界游戏里没有点卡,你就什么都干不了。而如果你时间比较充裕,又痴迷于魔兽世界的话,一张点卡24小时在线顶多用4天便玩玩。按一张点卡30元的价格计算下去,这一个月花多少钱。而我们清楚玩魔兽世界的大多是学生朋友,一个月百八十块钱的点卡对他们来说还是相当的吃紧。所以,只要点卡存在一天,我们就绝不玩魔兽。

阅读全文
类别:游戏 查看评论
文章来源:http://hi.baidu.com/slog/blog/item/9c3d50e7868fdf2ab8382051.html

posted @ 2008-04-01 18:46 UPEY! 阅读(64) | 评论 (0)编辑 收藏

Windows XP是一个比较安全的操作系统,每次启动时都要求选择账户并输入密码,对于公用电脑,这样当然更安全,但是如果这台电脑是一个人用,也没有什么重要资料,每次都要选择帐户并输入密码实在太麻烦了,怎么样才能让 Windows XP 不用输入密码自动登录呢?

  单击“开始/运行”,输入“rundll32 netplwiz.dll,UsersRunDll”,按回车键后弹出“用户帐户”窗口,看清楚,这可跟“控制面板”中打开的“用户账户”面板窗口不同哦!然后取消选定“要使用本机,用户必须 阅读全文
类别:操作系统 查看评论
文章来源:http://hi.baidu.com/slog/blog/item/ac2affed83ace84b79f055fa.html

posted @ 2008-03-30 18:21 UPEY! 阅读(158) | 评论 (0)编辑 收藏

我要安家免费提供10M主页空间,ftp快速上传管理文件,上传单个文件大小无限制,支持php,空间速度不错,还送你一个免费二级域名、每月1G流量。另外,3个月至少登陆一次我要安家首页,要求在页面显著位置放置其链接。如果注册为他们的收费空间也是不错的选择,本站推荐!(申请时,请认真填写您的资料,珍惜资源!)

地址:

阅读全文
类别:服务器 查看评论
文章来源:http://hi.baidu.com/slog/blog/item/dd56ed50a3cc2e581138c2d9.html

posted @ 2008-03-29 17:58 UPEY! 阅读(333) | 评论 (0)编辑 收藏

仅列出标题
共6页: 1 2 3 4 5 6 

posts - 55, comments - 2, trackbacks - 0, articles - 10

Copyright © UPEY!