2010-04-20 49 views
0

我创建了一个index.php文件,位于http://localhost/home/index.php。该文件填写下面的代码。FireBug没有工作

<?php 

# //include the file 
require_once("FirePHP.class.php"); 
# //create the object 
$firephp = FirePHP::getInstance(true); 
# //send information 
$firephp->fb("Hello world!"); 

?> 

我启用Firebug和firePHP,BTW我下载firePHPCore和FirePHP.class.php复制到http://localhost/home/FirePHP.class.php目录。

要运行此代码,我无法在萤幕控制台中看到消息“Hello world!”。

我跟着教程 http://yensdesign.com/2008/10/how-to-debug-php-code/

WINXP和Firefox 3.6.3; fireBug 1.5.3;使用firePHP 0.4.3。 任何建议?

回答

0

我是firebug的新手。

净面板被禁用....

启用网络面板。它运作良好。这个很酷。

谢谢。