从文件中加载文本并以选取框显示 (php & html)
Load text from file & display in marquee (php & html)
我需要从 .txt 文件加载文本并将其显示在选取框上,这样当我更改它显示的内容时,我不必去更改所有页面。
这是我的代码:
<marquee behavior="scroll" direction="left"><?php include('../Files/marquee/Main_Marquee.txt'); ?></marquee>
文本加载完成。
这张截图是我从文件中加载文本的地方。
http://prntscr.com/7ysws3
这是我在文档中手动输入文本的地方。
http://prntscr.com/7ysxc9
谢谢
-亚当
<marquee behavior="scroll" direction="left"><?php echo file_get_contents('../Files/marquee/Main_Marquee.txt'); ?></marquee>
我需要从 .txt 文件加载文本并将其显示在选取框上,这样当我更改它显示的内容时,我不必去更改所有页面。
这是我的代码:
<marquee behavior="scroll" direction="left"><?php include('../Files/marquee/Main_Marquee.txt'); ?></marquee>
文本加载完成。
这张截图是我从文件中加载文本的地方。 http://prntscr.com/7ysws3
这是我在文档中手动输入文本的地方。 http://prntscr.com/7ysxc9
谢谢 -亚当
<marquee behavior="scroll" direction="left"><?php echo file_get_contents('../Files/marquee/Main_Marquee.txt'); ?></marquee>