How to save an outputted view as a file in CodeIgniter?
Posted
by Peter
on Stack Overflow
See other posts from Stack Overflow
or by Peter
Published on 2010-06-06T14:42:55Z
Indexed on
2010/06/06
14:52 UTC
Read the original article
Hit count: 342
I have a view file result_view.xml that needs some variables to format an output. In controller I use $this->load->view('result_view.xml', $data); to finish the XML. Now, I also want to save this finalized XML as a file result.xml on my server. Is there a way to do that? Thanks.
© Stack Overflow or respective owner