Home > Backend Development > PHP Tutorial > Develop customer service work order system based on PHP technology

Develop customer service work order system based on PHP technology

WBOY
Release: 2016-07-29 09:07:38
Original
1644 people have browsed it

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>

Copy after login

It should be noted that amazeui is a front-end component that must be loaded.

Interface preview

Backend homepage

Develop customer service work order system based on PHP technology

Work order list

Develop customer service work order system based on PHP technology

Work order detail page

Develop customer service work order system based on PHP technology

Customized work order

Develop customer service work order system based on PHP technology

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.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template