学习php。使用easyphp和在记事本中书写,Hello world不会显示++
<html>
<!--HTML-->
<head><title>a quick test</title></head>
<body>a quick test</body>
<p>javascript</p>
<!--javascript-->
<p><script>
document.write("hello world")
</script></p>
<p>php</p>
<!--php-->
<?php
Echo "hello world";
?>
</html>
Hello world 适用于 javascript,但不适用于 php,这是怎么回事?有什么建议或明显的错误吗?
谢谢
<html>
<!--HTML-->
<head><title>a quick test</title></head>
<body>a quick test</body>
<p>javascript</p>
<!--javascript-->
<p><script>
document.write("hello world")
</script></p>
<p>php</p>
<!--php-->
<?php
Echo "hello world";
?>
</html>
The Hello world works for javascript but not in php, what gives? Any suggestions or obvious errors?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否使用 .php 文件扩展名保存此文件? PHP 代码不会在普通的 .html 文件中执行。
Are you saving this file with a .php file extension? PHP code will not execute within a normal .html file.
如果你查看源代码,你能读懂你的 PHP 吗?
可能是你的环境设置错了。
产量?
If you view source, can you read your PHP?
Perhaps your environment is set up wrong.
What does
<?php phpinfo(); ?>
yield?顺便说一句,要使 w3 有效,您的 body 标记应该在结束 html-tag -> 之前结束。像这样:
To be w3 valid by the way, your body tag should end before the ending html-tag -> as such:
首先,在保存任何与 PHP 相关的文件之前,您必须清楚地了解它将以哪种格式保存。将文件保存为.php扩展名,例如:filename.php,然后在WAMP服务器上执行它。你会发现HELLO World。
First of all, before saving any file related to PHP, You have to clear see in which format it is going to Save. Save the file in .php extension, for example : filename.php then execute it at WAMP server. You will find HELLO World.