我有一个页面,用户可以在其中创建自己的脚本来修改服务器上的文本(不要担心访问权限仅限于少数用户)。所以用户只能填写三个字段,一个是规则的名称,另一个是要替换的表达式,最后一个是替换它的内容:
<label id="name">Name: </label> <input type="text" name="ruleName" size="50" id="ruleName"></input> </br>
<label id="input">Replace: </label> <input type="text" size="50" name="inputStep1" id="inputStep1"></input> </br>
<label id="output">By:</label> <input type="text" size="50" id="outputStep1"></input></br>
之后,规则通过php
帖子存储在服务器上的一个文件中(我会省去你这个命令的不必要的细节......)。然后规则以带有复选框的形式列出,我希望在单击复选框时应用规则。
我唯一能想到的是通过脚本标签导入脚本文件,但仅通过导入它不会运行内部脚本。
我怎么做?
谢谢