Voting mini-program graduation design works based on WeChat selection (3) Development of technical documents

Introduction to the blogger: The author of "Vue.js Introduction and Mall Development" and "WeChat Mini Program Mall Development", CSDN blog expert, online education expert, CSDN diamond lecturer; focusing on graduation design education and counseling for college students.

All projects come with basic knowledge video courses from beginners to masters, free of charge

The project is equipped with corresponding development documents, opening reports, task books, PPT, paper templates, etc.

Contact information is available at the end of the article
 

Development overview

Development operating system: windows10 + 4G memory + 500G

Mini Program Development: WeChat Developer Tools (MINA Framework)

Background environment: PHPstudy integrated environment

Background development language: PHP

Background development tool: Dreamweaver or PhpStorm (development tool is optional)

Database: mysql8

Database management tool: navicat

Other development languages: html + css +javascript


Database ER Diagram

image.png

Background file list

Path: background source code ht directory is the background

Green shows the system framework, do not move

Location

program name

illustrate

Source code root directory

login.php

Background login page

Source code root directory

check_u_login.php

Background login handler

ht

background root directory

index.php

Background Home

left.php

background left menu

u_logout.php

sign out

ht/quanxian

password management

mima.php

Password change page

mima_act.php

password changer

ht/zixun

Information

caidan_1ji.php

Information classification management

zixun_add.php

Information entry page

zixun_add_act.php

Information entry database program

zixun_list.php

information list

zixun_xiugai.php

Information modification page

zixun_xiugai_act.php

Information modification procedure

zixun_del.php

Information Deletion Procedure

ht/ guanggao

carousel ads

ad_index_wx.php

Carousel settings page

ad_index_wx_baocun

Carousel image setting program processing

ht/huiyuan

member

hy_list.php

member list

hy_del.php

member deletion

ht/toupiao

voting management

toupiao_list.php

Participation voting list

toupiao_del.php

Participation vote deleted

List of applet interface files

applet interface

program name

Include

front page

wx_toupiao_zhuti_chaxun.php

query interface

wx_toupiao_tongji.php

get statistics

wx_lunbo.php

Get the top carousel image array (multiple images)

wx_news_list.php

Get the latest information 3 items

wx_toupiao_tou.php

Submit voting information to the interface

wx_toupiao_zhuti_chaxun.php

Get the default 4 latest information

List of all entries

wx_toupiao_all.php

Get a list of all entries

Sign up

wx_toupiao_zhuti_add.php

Submit registration information to the interface for processing

/phpup/upload_file.php

Image upload interface

Entry Information

wx_toupiao_liulanxinxi.php

write access information

wx_toupiao_zhuti_xinxi_byid.php

read information

wx_toupiao_tou.php

Submit voting information to the interface

ranking

wx_toupiao_paihang_all.php

Get ranking data

information

wx_news_list_byid.php

Get information list

wx_news_info.php 

Get information Details

member

wx_check_reg_yonghu.php

Ordinary user registration

wx_check_login_yonghu.php

Ordinary user login

wx_check_reg_yonghu-weixin.php

WeChat login

wx_toupiao_zhuti_list_byuid.php

User registration list

wx_huiyuan_xinxi_byid.php

read member information

wx_huiyuan_xinxi_update_byid.php

Update member information

wx_huiyuan_mima_act.php

change Password

Database Table

Advertising form: guanggao

field name

type

Remark

id

Int

Auto-increment; the id (primary key) of the menu, empty is not allowed

wz1

longtext

Text of Ad 1

tpdz1

longtext

Image URL of Ad 1

ljdz1

longtext

Link address of ad 1

wz2

longtext

Text of Ad 2

tpdz2

longtext

Image URL of Ad 2

ljdz2

longtext

Link address of Ad 2

wz3

longtext

Text of Ad 3

tpdz3

longtext

Image URL of Ad 3

ljdz3

longtext

Link address of advertisement 3

Membership form: huiyuan

field name

type

Remark

id

int

Auto-increment; the id (primary key) of the menu, empty is not allowed

shouji

varchar

Mobile phone number: username

mima

varchar

password

xingming

varchar

Name

qq

varchar

QQ number

email

varchar

Email

wx_openid

varchar

log in to WeChat's openid

wx_nicheng

varchar

WeChat nickname

wx_touxiang

varchar

Wechat avatar picture address

add_riqi

date

Write database date

add_shijian

datetime

write database time

beizhu

text

Remark

Information sheet: zixun

field name

type

Remark

id

Int(11)

Auto-increment; the id (primary key) of the menu, empty is not allowed

xinxi_lxid1

int(11)

Foreign key: the id of the information level 1 type, refer to the id of the information type table

xinxi_biaoti

varchar(250)

information title

xinxi_riqi

date

message date

xinxi_neirong

text

content:

add_riqi

date

Write database date

add_shijian

datetime

write database time

Information classification table: zixun_fenlei

field name

type

Remark

id

Int(11)

Auto-increment; the id (primary key) of the menu, empty is not allowed

caidan_mingcheng

varchar(50)

menu name, empty is allowed

paixu_id

int(11)

Sort the numbers, the bigger numbers come first, empty is allowed

Voting topic table: toupiao_zhuti

field name

type

Remarks ( BB is the abbreviation for registration)

id

Int

Auto-increment; the id (primary key) of the menu, empty is not allowed

u_id

int

user id

bb_xingming

varchar

Name

bb_xingbie

varchar

gender

bb_nianling

int

Seniors (college age, freshman pair 1)

bb_shouji

varchar

cell phone

bb_xuanyan

varchar

declaration

bb_tupian

varchar

picture (cover)

bb_tupians

text

multiple pictures

liulanshu

int

viewing count

piaoshu

int

number of votes

paihang

int

ranking

add_date

date

date

add_time

datetime

date time

Voting browsing scale: toupiao_liulan

field name

type

Remark

id

Int

Auto-increment; the id (primary key) of the menu, empty is not allowed

u_id

int

user id

zhuti_id

int

poll topic id, external key

add_date

date

date

add_time

datetime

date time

Voting form: toupiao_list

field name

type

Remark

id

Int

Auto-increment; the id (primary key) of the menu, empty is not allowed

u_id

int

user id

zhuti_id

int

poll topic id, external key

add_date

date

date

add_time

datetime

date time

Reference: https://www.hzyaoyi.cn/pc_jiaocheng_tushu_index.php?/38/1450.html

Guess you like

Origin blog.csdn.net/u013818205/article/details/132661110