CodeIgniter Forums
how to extract data from a txt file ? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: how to extract data from a txt file ? (/showthread.php?tid=26605)



how to extract data from a txt file ? - El Forum - 01-18-2010

[eluser]sasori[/eluser]
hi, can you guys tell me how to extract datas from a text file and save the data to mysql using codeigniter ?
im thinkin of using one of these
Quote:http://ellislab.com/codeigniter/user-guide/helpers/file_helper.html
but not sure which one should i use.
* and where am i gonna put the function that will extract the data from the txt file ?
should I put it on the controller, model or view ?


how to extract data from a txt file ? - El Forum - 01-18-2010

[eluser]flaky[/eluser]
Code:
$string = read_file('./path/to/file.php');

usually you put it in model or controller