我是webdeveloper。我的客户要求我编辑发票上的一些说明 喜欢
<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脚本中的内容更改。
for exapmen
<?php
// here the all the code of php
?>
<html>
// here div for instructions
<div id="instructions" >Here goes instruction </div>
</html>
像往常一样,公司指令逐月改变政策的结果。
找到三个解决方案
将商店内容div内容存储到数据库(由我的老板拒绝,不知道为什么)
2 - http://sourceforge.net/projects/ontext/(but它在编辑器中加载php的所有代码和用户如何找到代码行中的指令)//老板说只有说明文本会出现意味着拒绝了
3 - 看到一些jquery来编辑来自另一个php脚本的div的内容,但是用户可能想要加粗一些文本,所以当用户想要点击从另一个脚本更改div内容时,我们在[你看到的内容]编辑器中显示文本
需求量的:
<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>
在这方面,任何人都会帮助我。
答案 0 :(得分:5)
讨论你的老板是不是白痴,如何处理这个问题超出了本网站的范围。尝试在https://softwareengineering.stackexchange.com/上询问。
回答问题的技术部分:
希望这有帮助。
答案 1 :(得分:0)