我是网络开发人员。我的客户要求我编辑发票上的一些说明,
例如
<ul>
<b>NOTE </b>
<li>Check all the stock on sopt after that company will not claim anything </li>
<li>stock will be return within three days afther that company will deduct 10%</li>
</ul>
我们处理请求并将该文件再次上传到服务器。我们需要一种机制,以便用户有权编辑 php 脚本,但只有指令。自己更改指令,当单击提交表单时,客户端在存储在服务器上的 php 脚本中输入内容更改。
考试
<?php
// here the all the code of php
?>
<html>
// here div for instructions
<div id="instructions" >Here goes instruction </div>
</html>
像往常一样,公司指令因政策变化而逐月变化。
我找到了三个解决方案
1-将该指令 div 内容存储到数据库(被我的老板拒绝,不知道为什么)
2- http://sourceforge.net/projects/ontext/(但它在编辑器中加载了所有 php 代码和用户如何找到数百行代码中的指令)//老板说只有指令文本会出现意味着被拒绝
3-查看一些 jquery 以从另一个 php 脚本编辑 div 的内容,但用户可能想要加粗一些文本,所以当用户想要点击时为了从另一个脚本更改 div 内容,我们在 [what you see in what you get] 编辑器中显示文本。
要求:
<ul><li>
dont store instruction in mysql</li>
<li>
when users want to change instruction it just click on edit (button/labe etc) user gets instructions in editor and changing as they want when submit that page these <b>instruction </b> will be hardcoded in php script
</li>
</ul>
任何人都在这方面帮助我。