Php FusionCharts致命错误未定义函数FC_SetRenderer()

Php FusionCharts致命错误未定义函数FC_SetRenderer(),php,mysql,Php,Mysql,亲爱的,请帮我做这个 我在FusionCharts是个大人物。在使用FusionCharts创建聊天时,我遇到了一个致命错误,如 调用第49行C:\xampp\htdocs\chart\sample3\DrillDown\u Child\u chart.php中未定义的函数FC_SetRenderer() 第49行在下面给出第49行在上面给出,而不是FC_SetRenderer,请尝试FusionCharts.setCurrentRenderer('JavaScript')。亲爱的,谢谢。现在我

亲爱的,请帮我做这个

我在FusionCharts是个大人物。在使用FusionCharts创建聊天时,我遇到了一个致命错误,如

调用第49行C:\xampp\htdocs\chart\sample3\DrillDown\u Child\u chart.php中未定义的函数FC_SetRenderer()


第49行在下面给出

第49行在上面给出,而不是FC_SetRenderer,请尝试
FusionCharts.setCurrentRenderer('JavaScript')。亲爱的,谢谢。现在我得到了这些错误。。注意:在第43行的C:\xampp\htdocs\chart1\testing.php中使用未定义的常量FusionCharts-假定为“FusionCharts”。致命错误:在第43行的C:\xampp\htdocs\chart1\testing.php中调用未定义的函数setCurrentRenderer()。很可能,页面中没有包含FusionCharts.js。请阅读
    // Set the rendering mode to JavaScript
        FC_SetRenderer('javascript');

        // Call the renderChart method, which would return the HTML and JavaScript required to generate the chart
        echo renderChart('Charts/Column2D.swf', // Path to chart type
                '',     // Empty string when using Data String method
                $strXML,// Variable which has the chart data
                'top10_most_populous_cities', // Unique chart ID
                '660', '400', // Width and height in pixels
                false,  // Disable debug mode
                true    // Enable 'Register with JavaScript' (Recommended)
            );