Cakephp在文件夹内调用.php文件

i have a separate folder called socio which contains all core php files and index.php. i want to use this in cakephp under some div . Please help me how to proceed with this . where should i put socio folder in cake php . And how to call index.php which is located inside socio folder. I want to add this socio folder in cakephp div

You can keep your folder inside your project's webroot folder. You can call it using

<your-website-url>/socio/

Keep that socio folder under webroot directory. you can call the files inside that directory directly.