PHP页面没有显示任何内容

时间:2014-01-26 18:57:43

标签: php

我有一个简单的PHP页面,出于某种原因,当我访问它时,似乎没有什么我做错了吗?我的代码如下:

<?php


$hello = "Hello World!"

echo $hello;


?>

5 个答案:

答案 0 :(得分:4)

设置为 php.ini

ini_set("display_errors", TRUE);

并使用

修改您的代码
<?php $hello = "Hello World!"; echo $hello; ?>

答案 1 :(得分:2)

您的问题是您在创建变量$hello后忘记了semilcolon。如果您没有收到错误显示,可能会关闭错误报告,您可以在php.ini文件中打开它,或者在打开ini_set("display_errors", TRUE);后将<?php作为第一行代码。标签

这应该可以解决问题

<?php


$hello = "Hello World!";

echo $hello;


?>

答案 2 :(得分:1)

您不会以;结束!

<?php

$hello = "Hello World!";

echo $hello;

答案 3 :(得分:1)

你犯了一个错误而你的错误是你不给“;”在你的第二行之后

enter image description here

答案 4 :(得分:1)

<?php
$hello = "Hello World!"; // you forget to give ";" at the end off this line
echo $hello;  
?>