0

我正在尝试使用 include 语句加载另一个页面,但我不断收到错误消息:

Warning: include(AccountView.php?id=) [function.include]: failed to open stream: No such file or directory in /home/public_html/InsertAccount.php on line 62 

$return = "AccountView.php?id=".$ID;
include $return;

我不确定我缺少什么才能使其正确执行。另一双眼睛真的很棒。

4

2 回答 2

1

没有具有此名称的文件:

AccountView.php?id=

?id=部分正在杀死你。您试图在其中包含 URL,而不是文件名。

于 2013-02-08T18:56:17.023 回答
1

除非您有一个名为 的文件AccountView.php?id=.php,否则这是行不通的。

您要做的是设置变量 ( $ID),包含您的文件,然后$ID在包含的文件中使用:

$ID = '5';
$return = "AccountView.php";
include $return;
于 2013-02-08T18:56:56.193 回答