How to display content of txt file?
I store file in database. I need display their content on website(something like form field?). I need to be able to edit it. This is example path to file:
src_files/out_11.txt
I have no idea how to do this.
您如何将文件存储在数据库中,您的意思是它的内容?要编辑文本,只需将其放在 textarea 标签内;如果它在一个文件中,你可以做
<textarea> <? readfile("src_files/ut_11.txt") ?> </textarea>
嗯,这实际上很容易
首先获取内容fopen
,不错的教程,或者readfile
将内容放在文本区域中,以便用户可以对其进行编辑。
然后当用户提交它时,您可以fopen
再次使用来保存文件或使用file_put_contents
基本上,您将文件读取到变量,然后填充此变量的值,然后在表单上使用来自 textarea 的一个提交更新 DB 值。但是,您必须注意编码更改,否则文本可能会被搞砸。
确切的功能,因为它是 PHP,你可以查看http://www.php.net/manual/en/,它有很好的搜索、示例,并且完全用户友好。