Home > Article > Backend Development > Develop customer service work order system based on PHP technology, develop customer service work in PHP_PHP tutorial
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 into any page, making the work order system more portable.
Operating environment
PHP 5.4 and above
Mysql 5.5 and above
The browser cannot be lower than IE8 including 8
Quick use
Log in to the system backend--work order model--create a 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.
<html> <head> <meta charset="utf-8"> </head> <body> <!--以下三个组件为必须加载--> <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="您的工单JS" id="ticket"></script> <script> var ticket = PT.createForm("ticket"); </script> </body> </html>
It should be noted that amazeui is a front-end component that must be loaded.
Interface preview
Backend Homepage
Work order list
Work order details page
Customized work order