分享
 
 
 

初学PHP的18个基础例程

王朝php·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

本站原创内容,转载请注明出处网页教学网。

如何创建我们的第一个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_REFE

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有