初学PHP的18个基础实例 |
|
来源:互联网 作者:本站整理 发布时间:2007-12-29 |
|
|
怎么样创建我们的第一个PHP页面呢?非常简单的!选择我们使用的一个最好的设计工具,当然你也可以 只使用记事本。创建之后记得要保存为扩展名为PHP的文件,然后传到我们的服务器上。
在编写PHP程序之前通常我们需要配置我们的环境,也就是说服务器要支持PHP才能行啊
一、PHP的基本结构:
使用Include函数
以下为引用的内容: <Html> <Head> <title>Your page Subject and domain name</title> |
上面内容为我们使用的每个页面的标题,不要动。
每个页的头部:
以下为引用的内容: www.phperz.com <Meta NAME="" CONTENT=""> "" your others meta tag "" your others meta tag "" your others meta tag "" your others meta tag "" your others meta tag "" your others meta tag "" your others meta tag |
重要的javascripts代码放这 CSS设置放这
上述内容保存为header.php,使每个页面的头部都是一样的。
以下为引用的内容: <?PHP include("header.php")?>
</head> <body>
你的页的所有内容
</body> www.phperz.com </html>
|
保存为footer.php,使每个页面的底部都一样。
以下为引用的内容: <? include("footer.php");?>
填写我们的版权信息
</body> </html> |
二:怎么样输出文本或者把文本建立连接用PHP
在PHP中怎么样显示文本呢?使用下面的命令:
以下为引用的内容: phperz.com <?php echo "Hello in php";?> |
怎么样创建一个连接呢?
|
上一页12345下一页 |
[收藏此页] [打印本页] [返回顶部] |
|
|
|
|
|
|
|
|
|