<p> 如何创建我们的第一个PHP页面呢?非常简单的!选择我们使用的一个最好的设计工具,当然你也可以 只使用记事本。创建之后记得要保存为扩展名为PHP的文件,然后传到我们的服务器上。</p><p> 在编写PHP程序之前通常我们需要配置我们的环境,也就是说服务器要支持PHP才能行啊</p><p> 一、PHP的基本结构:</p><p> 使用Include函数</p><code><Html><br /><Head><br /><title>Your page Subject and domain name</title></code><p> 上面内容为我们使用的每个页面的标题,不要动。</p><p> 每个页的头部:</p><code><Meta NAME="" CONTENT=""><br />"" your others meta tag<br />"" your others meta tag<br />"" your others meta tag<br />"" your others meta tag<br />"" your others meta tag<br />"" your others meta tag<br />"" your others meta tag</code></p><p> 重要的javascripts代码放这</p><p> CSS设置放这</p><p> 上述内容保存为header.php,使每个页面的头部都是一样的。</p><code><?PHP include("header.php")?><br /></head><br /><body></code><p> 你的页的所有内容</p><code></body><br /></html></code><p> 保存为footer.php,使每个页面的底部都一样。</p><p> <? include("footer.php");?></p><p> 填写我们的版权信息</p><code></body><br /></html></code><p> 二:如何输出文本或者把文本建立连接用PHP</p><p> 在PHP中如何显示文本呢?使用下面的命令:</p><p> <?php echo "Hello in php";?></p>
<p> </p>
<p> 如何创建一个连接呢?</p><p> <?php echo "<a href="http://tech.ddvip.com">tech.ddvip.com.com</a>";?></p><p> 如何创建一个有style的连接呢?</p><code><?php echo "<font style="color:blue;font-size:10px;font- family:verdana;">Free Scripts By: <a href="http://tech.ddvip.com.com" target="_blank" title="Free Scripts By: ddvip.com">http://tech.ddvip.com</font></a>";?></code><p> "echo"是用来显示输出的。</p><p> 三:如何实现分页:</p><p> 如果好多内容在你的页面中这时我们就考虑用分页形式来实现显示了。</p><p> 简单的分页代码:</p><code><html><br /><head><br /><title>tech.ddvip.com</title><br /></head><br /><body text="#000000"><br /><center><br /><table width="500" border="3"><br /><tr><br /><td width="140" height="400" valign="top"><br /><p align="center"><br /><a href='index.php'>home</a><br /><br /><a href='index.php?p=Page1'>page 1</a><br /><br /><a href='index.php?p=Page2'>page 2</a><br /><br /></p></td><br /><td width="360" height="400" valign="top"><br /><p><br /><?<br />function index()<br />{<br />echo "<p align=center>Welcome to this tutorial<br />Here you can find funny<br />tricks</p><br /><br /><br /><br /><br /><br />"; }<br />$choice=$_GET['p'];<br />switch($choice)<br />{<br />case "Page1":<br />echo "<p align=center>Page1 text, img and so on here</p>";<br />break;<br />case "Page2":<br />echo "<p align=center>Page2 text, img and so on here</p>";<br />break;<br />default:<br />index();<br />}<br />?><br /></p><br /></td><br /></tr><br /></table> </center><br /></body><br /></html></code><p> 以上文件必须保存为index.php</p>
<p> </p>
<p> 高级分页的代码:</p><code><html><br /><head><br /><title>ddvip.com</title><br /></head><br /><body text="#000000"><br /><center><br /><table width="500" border="3"><br /><tr><br /><td width="140" height="400" valign="top"><br /><p align="center"><br /><a href='index.php'>home</a><br /><br /><a href='index.php?action=contact_us'>page 1</a><br /><br /><a href='index.php?action=link_us'>page 2</a><br /><br /></p></td><br /><td width="360" height="400" valign="top"><br /><p><br /><?<br />if (isset($_GET['action'])) $PAGE = $_GET['action'];<br />else $PAGE = 'home';<br />switch ($PAGE) {<br />//1- index<br />case 'home':<br />include ('incl/home.php');<br />break;<br />//2-contact form<br />case 'contact_us':<br />include ('incl/contact_us.php');<br />break;<br />//3-Link us<br />case 'link_us':<br />include ('incl/link_us.php');<br />break;<br />default:<br />echo '<p align=center>Error 404! the page you request doesn t exist or as been temporarely unaccessible</p>';<br />break;<br />}<br />?><br /></p><br /></td><br /></tr><br /></table><br /></center><br /></body><br /></html></code><p> 提供了演示的下载,请自己去试试!</p>
<p> </p>
<p> 四:页面加载时间的代码:</p><code><?php<br />echo ("Page Took :");<br />$load = microtime();<br />print (number_format($load,2));<br />echo (" Sec To Load.");<br />?></code><p> 五:显示从哪个地址转到你当前访问的站的代码:</p><code><?php<br />echo "You Came From:<br />";<br />echo $_SERVER['HTTP_REFERER'];<br />?></code><p> 六:设置IP地址的转向:屏蔽IP</p><code><?php<br />if(($REMOTE_ADDR == "22.22.22.22")):// ip address<br />print "<meta http-equiv='refresh' content='0; url=http://www.sina.com'>";// url to redicted<br />endif;<br />?></code><p> 七:随即显示标题的代码:</p><code><Title><?php include("title.php");?></Title></code><p> 要事先做一个title.php文件啊</p><p> 八;如何用PHP来建立一个HTML 的table</p><code><?php<br />echo"<html><br />";<br />echo"<head><br />";<br />echo"<title>allo</TITLE><br />";<br />echo"</head><br />";<br />echo"<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="5"<br />bgcolor="#ffffff"><br />";<br />echo"<center><br />";<br />echo"<table width="500" border="1" cellspacing="0" cellpadding="0"><br />";<br />echo"<tr><br />";<br />echo"<td><br />";<br />echo"<p align="center"><br />";<br />echo"<br />";<br />echo"Text Goes Here<br />";<br />echo"</p><br />";<br />echo"</td><br />";<br />echo"</tr><br />";<br />echo"</table><br />";<br />echo"</center>";<br />echo"</body><br />";<br />echo"</html>";<br />?></code><p> 九、声明字符串变量:</p>
<p> </p>
<p> 建立一个页面 ( config.php ) 粘贴下面代码:</p><code><?<br />$name="Name";<br />$salutation="Hey!";<br />$title="ddvip.com";<br />$copyrights="©2005 ddvip.com";<br />$link_1="Home";<br />?></code><p> 创建一个页面( test.php )把下列代码</p><p> <? include("config.php");?></p><p> 放在<html><head>之前,然后在test.php页里来调用上面的字符串</p><p> <p align="center"><? echo("$title");?></p></p><p> 也可以这样来声明:</p><code><?<br />$surname1="Marco"; $lastname1="Charette";<br />?></code><p> 调用:</p><p> <? echo("$surname1 $lastname1");?></p><p> 十、显示你的服务器的信息:</p><p> <? phpinfo(); ?></p><p> 十一:实现页面的跳转:</p><p> 创建"jump.php"页面并且设置变量来隐藏连接的地址</p><code><?<br />if ($id == "1"){$link = "http://ddvip.com";}<br />if ($id == "2"){$link = "http://google.com";}<br />header("Location: $link"); // 实现了跳转<br />exit();<br />?></code><p> 保存之后,在另外一个页中加入如下代码:</p><p> <a href="jump.php?id=1">Visit This Link</a></p><p> 跳转并且还把访客保存在你的页面内:</p><code><?<br />if ($id == "1"){$link = "http://ddvip.com";}<br />if ($id == "2"){$link = "http://google.com";}<br />echo "<frameset rows="0,100%" border="0"><br />";<br />echo "<frame src="jump.php" name="head" scrolling="no" marginheight="0" frameborder="0" noresize><br />";<br />echo "<frame src="$link" name="body" marginheight="10" marginwidth="10" frameborder="0" noresize><br />";<br />echo "</frameset><br />";<br />header("Location: $link");<br />exit();<br />?></code><p> 保存为jump.php然后再其他页内加入连接代码:</p>
<p> </p>
<p> <a href="jump.php?id=1">Visit This Link</a></p><p> 十二、保护页面:</p><code><? $Referer = getenv("HTTP_REFERER");<br />if (!strchr($Referer, "http://ddvip.com/page.php")) {<br />echo "<script>alert('你不能访问这个页面');<br />window.location='http://ddvip.com';</script>";<br />exit(); } ?></code></p><p> 十三:限制访问某个页面</p><code>// choose a user name and password between the " " symbol<br />//===========================<br />$admin_user_name="admin"; // your admin username<br />$admin_password="pass"; // your password<br />$site_com="ddvip.com"; // your website name WITHOUT http:// and www<br />$login="你已经登陆"; // succesful message when user are logged in ( NOT NECESSARY )<br />//===========================<br />// DO NOT EDIT NOTHING BELOW!<br />if ((!isset($PHP_AUTH_USER)) || (!isset($PHP_AUTH_PW))) {<br />/* No values: send headers causing dialog box to appear */<br />header('WWW-Authenticate: Basic realm="$site_com"');<br />header('HTTP/1.0 401 Unauthorized');<br />echo '<h1>访问的页面被限制.</h1>请检查你的用户名或密码是否正确,正常登陆本站才能查看 本站的内容';<br />exit;<br />} else if ((isset($PHP_AUTH_USER)) && (isset($PHP_AUTH_PW))){<br />/* Values contain some values, so check to see if they're correct */<br />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 */<br />header('WWW-Authenticate: Basic realm="$site_com"');<br />header('HTTP/1.0 401 Unauthorized');<br />echo '<h1>访问的页面被限制.</h1>请检查你的用户名或密码是否正确,正常登陆本站才能查看 本站的内容';<br />exit;<br />} else if (($PHP_AUTH_USER == "$admin_user_name") || ($PHP_AUTH_PW == "$admin_password")) { echo "$login<br />";<br />}<br />}<br />?></code><p> 保存为log.php,把下列代码加到head页内,那么将会保护所有的页面。</p>
<p> </p>
<p> <? require("log.php");?></p><p> 十四、制作一个自动转向:</p><code><?php<br />header("Refresh:0; url=http://ddvip.com");<br />?></code><p> 必须保存为php文件才可以。</p><p> 十五。制作用户列表:</p><code><?<br />$customer[0] = 'webjx';<br />$customer[1] = 'web';<br />$customer[2] = 'mutou';<br />$customer[3] = 'chuxia';<br />$customer[4] = 'shenhua';<br />echo "第3个用户是: $customer[2]";<br />echo "<br /><br />所有的用户:<br /><br />";<br />$number = 5;<br />$x = 0;<br />while ($x < $number) {<br />$customernumber = $x + 0;<br />echo "Costumer Name $customernumber is $customer[$x]<br />";<br />++$x;<br />}<br />?></code></p><p> 将会显示:</p><p> The third customer is mutou</p><p> 所有的用户:</p><p> Costumer Name 0 is webjx</p><p> Costumer Name 1 is web</p><p> Costumer Name 2 is mutou</p><p> Costumer Name 3 is chuxia</p><p> Costumer Name 4 is shenhua</p><p> 另一种读取数组的方法:</p><code><?<br />echo "3 of my customer are: $customer[0], " . " $customer[1] and " . " $customer[2]. " . "<br />";<br />?></code></p><p> 将会显示:</p><p> 3 of my customer are: webjx, web and mutou.</p><p> 十六.统计某个目录下文件的数量:</p><code><?<br />echo("There is ");<br />$dir = "/path/to/the/folder/in/your/computer ";<br />$count = 0;<br />$handle=opendir($dir);<br />while (($file = readdir($handle))!== false){ if ($file != "." && $file != "..") { $count++; }}<br />echo $count;<br />echo(" Pages For You To Search In This Directory.");<br />?></code><p> 十七.显示当前日期或最新更新的日期:</p></p><p> <?php echo date("F d Y"); ?></p><p> 显示更新日期:</p><code><?php echo "Last Modified: " . date ("m/d/y.", getlastmod());?></code></p><p> 十八.重复一个字符多次的代码:</p><code><?<br />echo str_repeat("-", 30);<br />?></code></p></p>