Related knowledge: Keshuntong php online customer service system v2.0.0
PESCMS Ticket
PESMCS Ticket (hereinafter referred to as PT) is an open source customer service ticket system released based on the GPLv2 protocol. PT is developed based on PESCMS2 as the core. With a new design concept, a single JS sentence can be embedded in any page, making the work order system more portable.
Operating environment
PHP 5.4 and above
Mysql 5.5 and above
The browser must not be lower than IE8 including 8
Quick use
Log in to the system background--Work order model--Create work order. After creation, click the 'Generate JS' button. Save the JS file locally. Finally, on any page, introduce the following code to implement your work order system.
<meta charset="utf-8"> <!--以下三个组件为必须加载--> <link rel="stylesheet" href="http://cdn.amazeui.org/amazeui/2.4.2/css/amazeui.min.css"> <script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script> <script src="http://cdn.amazeui.org/amazeui/2.4.2/js/amazeui.min.js"></script> <!--以上三个组件为必须加载--> <script src="%E6%82%A8%E7%9A%84%E5%B7%A5%E5%8D%95JS"></script> <script> var ticket = PT.createForm("ticket"); </script>
It should be noted that amazeui is a front-end component that must be loaded.
Interface preview
Backend homepage
Work order list
Work order detail page
Customized work order
The above has introduced the development of a customer service ticket system based on PHP technology, including aspects of the system. I hope it will be helpful to friends who are interested in PHP tutorials.