background image

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