关于 php 和 Dreamweaver 的问题吗?

发布于 2024-12-03 10:54:32 字数 607 浏览 0 评论 0原文

我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书间行客 2024-12-10 10:54:32

CS5 上的操作方式如下:

  1. 单击“站点”(在工具栏中)。
  2. 单击“新站点”。
  3. 选择“服务器”选项卡,然后选择新服务器十字+
  4. 选择连接方式: 选项框并选择本地/网络。
  5. 选择服务器文件夹:作为 htdocs 的根目录。
    例如:C:\xampp\htdocs 和 Web URL:http://localhost
  6. 单击“保存”。

向项目添加新文件:

业务催化剂面板(右下角)中,右键单击连接 - 新文件。
将其扩展名重命名为 .php 就可以了。

更新: 默认情况下,PHP 不会在 .html 文件中提取 PHP。

要做这个:
创建一个 .htaccess 文件并将其放入其中:

RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html

希望这会有所帮助

This is how on CS5:

  1. Click Site(in toolbar).
  2. Click New Site.
  3. Select the Servers tab and select the new server cross +
  4. Select the Connect using: option box and choose Local/Network.
  5. Select Server Folder: as the root to your htdocs.
    e.g:C:\xampp\htdocs and the Web URL: as http://localhost
  6. Click Save.

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:

RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html

Hope this helps

初与友歌 2024-12-10 10:54:32

据我所知,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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文