初学PHP的18个基础实例 |
|
来源:互联网 作者:本站整理 发布时间:2007-12-29 |
|
|
五:显示从哪个地址转到你当前访问的站的代码:
以下为引用的内容: <?php
echo "You Came From: "; echo $_SERVER['HTTP_REFERER']; ?>
|
六:设置IP地址的转向:屏蔽IP
以下为引用的内容: php程序员站 <?php
if(($REMOTE_ADDR == "22.22.22.22")):// ip address
print "<meta http-equiv='refresh' content='0; url='>";// url to redicted endif; ?> |
七:随即显示标题的代码:
以下为引用的内容: <Title><?php include("title.php");?></Title> |
要事先做一个title.php文件啊
八;怎么样用PHP来建立一个HTML 的table
以下为引用的内容: phperz.com <?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>"; ?> |
phperz.com
九、声明字符串变量:
建立一个页面 ( config.php ) 粘贴下面代码:
以下为引用的内容: <? $name="Name"; $salutation="Hey!"; $title="phperz.com"; $copyrights="©2005 phperz.com"; $link_1="Home"; ?> |
创建一个页面( test.php )把下列代码
<? include("config.php");?>
放在<html><head>之前,然后在test.php页里来调用上面的字符串
<p align="center"><? echo("$title");?></p> www.phperz.com
也可以这样来声明:
<? $surname1="Marco"; $lastname1="Charette"; ?>
调用:
<? echo("$surname1 $lastname1");?>
十、显示你的服务器的信息:
以下为引用的内容: <? phpinfo(); ?> |
|
上一页12345下一页 |
[收藏此页] [打印本页] [返回顶部] |
|
|
|
|
|
|
|
|
|