我有以下目录结构。
application
|
| -----> controller
|
| ------> profie_control.php
assets
|
| ------> Others
|
|---> uploadify
|
| --> uploadify.php
现在uploadify.php
我正在做所有我想要执行的事情。然后在一切完成后我想调用一个函数并将数据传递给它。profile_control.php
现在我不知道如何访问这些函数。我尝试使用以下代码
include_once("http://localhost/php/ci/index.php/profile_control/myfunction");
在uploadify.php
但它给了我以下错误
Warning: include_once() [function.include-once]: http:// wrapper is disabled in the server configuration by allow_url_include=0 in C:\wamp\www\php\ci\assets\Others\uploadify\uploadify.php on line 8
而且我在一些论坛上读到这种方法不好,因为它会导致安全问题。现在我如何安全地发送数据uploadify.php
或者profile_control.php
什么是更好的选择???