CodeIgniter Forums
File Helper - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: File Helper (/showthread.php?tid=40777)



File Helper - El Forum - 04-18-2011

[eluser]j4zzyh4ck3r[/eluser]
Code:
public function test()
        {
            $this->_data['online'] = read_file(base_url() . 'assets/data/online.txt');
            echo ($this->_data['online']) ? $this->_data['online'] : 'FALSE';
        }

Is there anything wrong with that code ? Because I tried to echo the path and add it as url, the file is shown... Thanks


File Helper - El Forum - 04-22-2011

[eluser]vrencianz[/eluser]
The problem is the base_url()
Code:
read_file('assets/data/online.txt');