2014-01-12 68 views
0

我正在嘗試爲基本網站構建基於PHPMailer的電子郵件系統。請求有關xajax的1行代碼的幫助

這是代碼是給我找麻煩行:

$xajax->printJavascript('xajax/'); 

現在,this is the tutorial我使用。

關於上面的代碼行,本教程這樣說:

How to use the code inside a webpage? Place the form (variable), the function (and the includes) before of all html code. Next we need to include some JavaScript file in the documents HTML header (place also php tags): $xajax->printJavascript('xajax/');

當我運行的所有代碼(包括:PHPMailer的腳本;阿賈克斯腳本),我得到這個錯誤,對前述線碼。

Fatal error: Call to a member function on a non-object

所以,我的問題是,我需要以某種方式自定義此代碼或使其運行一些AJAX核心文件或東西的文件路徑?

回答

0

我願意成爲$ xajax沒有定義。嘗試包括庫之後,但包括調用該方法之前添加此:

$xajax = new xajax(); 

有可能是被xajax需要一些額外的設置。更完整的代碼示例可以幫助解決問題。

+0

我感謝您的協助。所有的代碼都在教程中,在初始文章中超鏈接。它是一個超級基本的ajax/xajax電子郵件系統。 –