当前位置:文档之家› 新手入门:初学动态网页PHP的18个例子

新手入门:初学动态网页PHP的18个例子

新手入门:初学动态网页PHP的18个例子
2007-08-24 10:11 [小 大] 来源: 网页教学网 评论: 0 分享至: 百度权重查询 站长交易 友情链接交换 网站建设,网站设计,企业建站就找313

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

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

一、PHP的基本结构:

使用Include函数

以下为引用的内容:


Your page Subject and domain name


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

每个页的头部:

以下为引用的内容:

"" 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,使每个页面的头部都是一样的。

以下为引用的内容:








你的页的所有内容

以下为引用的内容:




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



填写我们的版权信息

以下为引用的内容:




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

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



如何创建一个连接呢?

https://www.doczj.com/doc/1811737428.html,";?>

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

Free Scripts By: https://www.doczj.com/doc/1811737428.html,";?>

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

三、如何实现分页

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

简单的分页代码:

以下为引用的内容:



https://www.doczj.com/doc/1811737428.html,










home

page 1

page 2



function index()
{
echo "

Welcome to this tutorial
Here you can find funny
tricks







"; }
$choice=$_GET['p'];

switch($choice)
{
case "Page1":

echo "

Page1 text, img and so on here

";
break;

case "Page2":

e

cho "

Page2 text, img and so on here

";
break;

default:
index();
}

?>






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

高级分页的代码:



https://www.doczj.com/doc/1811737428.html,










home

page 1

page 2




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 '

Error 404! the page you request doesn t exist or as been temporarely unaccessible

';
break;
}

?>









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

四、页面加载时间的代码

以下为引用的内容:


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

?>



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

以下为引用的内容:


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



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

以下为引用的内容:


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

print "";// url to redicted
endif;
?>



七、随即显示标题的代码

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

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

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

以下为引用的内容:
echo"\n";
echo"\n";
echo"allo\n";
echo"\n";
echo"bgcolor=\"#ffffff\">\n";
echo"
\n";
echo"\n";
echo"\n";
echo"\n";
echo"\n";
echo"
\n";
echo"

\n";
echo"
\n";
echo"Text Goes Here\n";
echo"

\n";
echo"
\n";
echo"
";
echo"\n";
echo"";
?>


九、声明字符串变量

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

以下为引用的内容:
$name="Name";
$salutation="Hey!";
$title="https://www.doczj.com/doc/1811737428.html,";
$copyrights="?2005 https://www.doczj.com/doc/1811737428.html,";
$link_1="Home";
?>


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



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

cho("$title");?>



也可以这样来声明:

以下为引用的内容:
$surname1="Marco"; $lastname1="Charette";
?>


调用:



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



十一、实现页面的跳转:

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

以下为引用的内容:

if ($id == "1"){$link = "https://www.doczj.com/doc/1811737428.html,";}
if ($id == "2"){$link = "https://www.doczj.com/doc/1811737428.html,";}

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



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

Visit This Link

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

以下为引用的内容:

if ($id == "1"){$link = "https://www.doczj.com/doc/1811737428.html,";}
if ($id == "2"){$link = "https://www.doczj.com/doc/1811737428.html,";}

echo "\n";
echo "\n";
echo "\n";
echo "\n";

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



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

Visit This Link

十二、保护页面

以下为引用的内容:
if (!strchr($Referer, "https://www.doczj.com/doc/1811737428.html,/page.php")) {
echo "";
exit(); } ?>


十三、限制访问某个页面

以下为引用的内容:

// choose a user name and password between the " " symbol
//===========================
$admin_user_name="admin"; // your admin username
$admin_password="pass"; // your password
$site_com="https://www.doczj.com/doc/1811737428.html,"; // 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 '

访问的页面被限制.

请检查你的用户名或密码是否正确,正常登陆本站才能查看 本站的内容';
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 '

访问的页面被限制.

请检查你的用

户名或密码是否正确,正常登陆本站才能查看 本站的内容';
exit;
} else if (($PHP_AUTH_USER == "$admin_user_name") || ($PHP_AUTH_PW == "$admin_password")) { echo "$login
";
}
}

?>



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



十四、制作一个自动转向


header("Refresh:0; url=https://www.doczj.com/doc/1811737428.html,");

?>

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

十五、制作用户列表

以下为引用的内容:

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

echo "

所有的用户:

";

$number = 5;
$x = 0;
while ($x < $number) {
$customernumber = $x + 0;
echo "Costumer Name $customernumber is $customer[$x]
";
++$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]. " . "
";
?>


将会显示:

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.");
?>



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



显示更新日期:



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

以下为引用的内容:

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



相关主题
文本预览
相关文档 最新文档