PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 新手专区 >> 

初学PHP的18个基础实例

初学PHP的18个基础实例

来源:互联网  作者:本站整理  发布时间:2007-12-29
怎么样创建我们的第一个PHP页面呢?非常简单的!选择



  怎么样创建一个有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"是用来显示输出的。

  三:怎么样实现分页:

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

  简单的分页代码:
以下为引用的内容:


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



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

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

?>

Tags: 初学PHP   基础   实例   实例   基础   php  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号