我的第一个php,我的第一个PHP不工作

作者分享了初次尝试加载PHP网站时遇到的问题,Firefox显示奇怪的编码标签,IE则提示打开文件而非页面。文章探讨了可能的原因及修复步骤,特别关注了functions.php和template.php中的代码片段。
摘要由CSDN通过智能技术生成

试图加载我的第一个PHP网站在浏览器中; Firefox显示奇怪的编码标签,IE询问我是否想“打开”文件,而不是加载页面。我认为我复制了一个教程100%,所以我认为它应该工作..还有什么我需要做的做这个工作,或者我可能有一些代码错误?

的functions.php

function displayContent($content) {

echo implode($content);

}

function displaySidebar($sidebar) {

echo implode($sidebar);

}

?>的template.php

index

header

的index.php

//include our functions

require_once ('functions.php');

// declare arrays

$content=array();

$sidebar=array();

//handle page request

$t=$_GET['t'];

if($t == 'about') {

//display about page //can we load a full template?

$content[]="

about

";

$content[]="

Content

";

$sidebar[]="";

} else {

//display the home page

$content[]="

home page

";

$content[]="

Content

";

$sidebar[]="";

}

//Important this is on bottom

//I guess content must be ready on load.

include ('template.php');

?>OUTPUT :(火狐)

about"; $content[]="

Content

"; $sidebar[]=""; } else { //display the home page $content[]="

home page

"; $content[]="

Content

"; $sidebar[]=""; } //Important this is on bottom //I guess content must be ready on load. include ('template.php'); ?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值