关于 php 和 Dreamweaver 的问题吗?
我在Windows XP上手动安装了apache、mysql、php。
我怎样才能让我的 Dreamweaver 配置为 php (这样它就可以运行 php)..
我添加这一行:
<?php print "hello world"; ?>
但没有出现
更新: 我点击我的站点:
站点---->管理站点-->编辑 服务器---->+ 服务器文件夹:D:\Apache2.2\htdocs Web URL: http://localhost:8080/
现在,当我关闭它并添加一个新的 php 文件时,php文件有效..但是当我在常规 html 文件中编写代码时,如下所示:
<?php print "hello world"; ?>
地址如下所示: http://localhost:8080/index.html
I have apache, mysql, php installed manually on windows xp.
How can I make my dreamweaver configurable for php (so it can run php)..
I add this line:
<?php print "hello world"; ?>
But nothing appears
UPDATE:
I clicked on my site:
Site---->Manage Site-->Edit
Servers---->+
Server Folder:D:\Apache2.2\htdocs
Web URL: http://localhost:8080/
Now when I close this and add a new php file,, the php file works..but when I write the code in a regular html file like this:
<?php print "hello world"; ?>
The address looks like this:
http://localhost:8080/index.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CS5 上的操作方式如下:
例如:C:\xampp\htdocs 和 Web URL: 为
http://localhost
向项目添加新文件:
在业务催化剂面板(右下角)中,右键单击连接 - 新文件。
将其扩展名重命名为 .php 就可以了。
更新: 默认情况下,PHP 不会在 .html 文件中提取 PHP。
要做这个:
创建一个 .htaccess 文件并将其放入其中:
希望这会有所帮助
This is how on CS5:
e.g:C:\xampp\htdocs and the Web URL: as
http://localhost
Adding a new file to the project:
In the Business catalyst panel(to the bottom right), Right click the connection - New file.
Rename it extension .php and your good to go.
UPDATE: PHP will not purse PHP in .html files by default.
Todo this:
Create a .htaccess file and place this in it:
Hope this helps
据我所知,Dreamweaver 本身并不运行 PHP。您需要一个能够执行 PHP 脚本的 Web 服务器(在 Windows 上我推荐 XAMPP apachefriends.org 进行本地测试)
Dreamweaver does not run PHP itself afaik. You need a Webserver that is able to execute PHP scripts (on Windows I recommend XAMPP apachefriends.org for local testing)