RSS订阅
PHP程序员站--WWW.PHPERZ.COM  
网站地图
高级搜索
收藏本站

 当前位置:主页 >> PHP基础 >> 新手专区 >> 文章内容
初学PHP的18个基础实例
[收藏此页[打印本页]   
来源:互联网  作者:本站整理  发布时间:2007-12-29




  怎么样创建一个有style的连接呢?
以下为引用的内容:
<?php echo "<font style=\"color:blue;font-size:10px;font- family:verdana;\">Free Scripts By: <a href=\"\" target=\"_blank\" title=\"Free Scripts By: phperz.com\"></font></a>";?>




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

  三:怎么样实现分页:

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

  简单的分页代码:
以下为引用的内容:
<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[/url]

<a href='index.php?p=Page1'>page 1[/url]

<a href='index.php?p=Page2'>page 2[/url]

</p></td>
<td width="360" height="400" valign="top"> phperz.com
<p>
<?
function index()
{
echo "<p align=center>Welcome to this tutorial Here you can find funny tricks</p>";

}
$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>

www phperz com



  以上文件必须保存为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[/url]

<a href='index.php?action=contact_us'>page 1[/url]

<a href='index.php?action=link_us'>page 2[/url]
phperz.com


</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>



  四:页面加载时间的代码:
以下为引用的内容: www~phperz~.com
<?php

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

?>


 上一篇:PHP中通过Web执行C/C++应用程序   下一篇:如何修改Apache返回的头部信息
 
 相关文章
 
发表评论
全部评论(0条)
 
 站内搜索
 热门搜索 mysql  基础  php基础  url
高级搜索 网站地图 站长工具 IP查询 收藏本站
 热点文章
 随机推荐
网站首页 | 网站地图 | 高级搜索 | RSS订阅
PHP程序员站 Copyright © 2007,PHPERZ.COM All Rights Reserved 粤ICP备07503606号 联系站长