


dedecms plug-in development tutorial, dedecms plug-in tutorial_PHP tutorial
dedecms plug-in development tutorial, dedecms plug-in tutorial
This is a very simple plug-in example. Through this plug-in, you can know how to develop a plug-in and how its structure is set up. , database, backend, etc.
File structure:
enroll.php file is under the plus file
enroll.htm file is under the templates/plus folder
adenroll.php file is under the dede folder
adenroll.html file
sql file in dede/templet folder:
CREATE TABLE IF NOT EXISTS `dede_enroll` ( `id` int(4) NOT NULL auto_increment, `name` varchar(20) NOT NULL, `mail` varchar(30) NOT NULL, `tag` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; INSERT INTO `dede_plus` (`aid`, `plusname`, `menustring`, `mainurl`, `writer`, `isshow`, `filelist`) VALUES (30, '网上报名', '<m:item name=''网上报名'' link=''adenroll.php'' rank=''plus_网上报名'' target=''main'' />', '', 'g1000', 1, '');
For convenience, I have simply set up two fields: name and email tag. The fields indicate whether to admit or not. 1 is admission.
The first insert statement is added to the background management.
The second insert statement is Add to front navigation bar
enroll.php
<?php //*******要先包含common.inc.php 然后 session_start(); 否则取不到session的值 //*******因为common.inc.php 有关于session路径的配置 include_once dirname(__FILE__).'./../include/common.inc.php';//包含配置文件 session_start(); require_once DEDEINC."/arc.partview.class.php";//包含partiew类 //*****实例化 这个类的作用是得到头部导航栏和尾部信息 若不需要可以使用dedetemplate.class.php 这个类 $pv = new PartView(); if($_POST){ if( CheckEmail($_POST['mail'])==false){//验证邮箱 方法在common.func.php 公用函数 ShowMsg('邮箱格式错误','-1'); exit(); } if($_POST['name']==""){ ShowMsg('用户名不能为空','-1'); exit(); }else{ $name=htmlspecialchars($_POST['name']); } if($_SESSION['dd_ckstr']!=strtolower($_POST['validation'])){//验证 验证码 必须转换成小写 ShowMsg('验证码错误',-1); exit(); } $sql="insert into `cms_enroll`(name,mail) values('$name','$_POST[mail]')"; //********$db可直接使用 系统自动实例化了dedesql.class.php $affected = $db->ExecuteNoneQuery2($sql);//执行一条语句 返回影响值 if($affected){ ShowMsg('报名成功',-1); } }else{ $pv->SetTemplet(DEDETEMPLATE.'/plus/enroll.htm');//设置模板 $pv->Display();//显示页面 } ?>
enroll.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head> <title>{dede:global.cfg_webname/}-在线报名</title> <link href="{dede:global.cfg_templeturl/}/style/dedecms.css" rel="stylesheet" media="screen" type="text/css" /> </script> </head> <body> {dede:include filename="../default/head.htm"/}<!-- 包含头部 --> <blockquote><?php require_once(dirname(__FILE__).'/config.php');//后台配置文件 检查登陆 配置信息 require_once(DEDEINC."/datalistcp.class.php");//包含分页类 if($_GET['action']&&$_GET['id']){ if($_GET['action']=='pass'){//各种操作 $db->ExecuteNoneQuery("update cms_enroll set `tag`=1 where id='$_GET[id]'"); ShowMsg('录取成功','adenroll.php'); } if($_GET['action']=='nopass'){ $db->ExecuteNoneQuery("update cms_enroll set `tag`=0 where id='$_GET[id]'"); ShowMsg('取消录取','adenroll.php'); } if($_GET['action']=='delete'){ $db->ExecuteNoneQuery("delete from cms_enroll where id='$_GET[id]'"); ShowMsg('删除成功','adenroll.php'); } }else{ $dl = new DataListCP(); $dl->pageSize = 10;//每页显示10条 $dl->SetTemplate('./templets/adenroll.htm');//载入模板 $sql="select * from cms_enroll"; $dl->SetSource($sql);//执行sql 不能与$dl->SetTemplate 颠倒 $dl->Display();//显示页面 } ?>
adenroll.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head> <title>在线报名管理</title> <link href='img/base.css' rel='stylesheet' type='text/css' /> <style type="text/css"> th,td{ text-align:center; border:1px #D1DDAA solid; font-size:15px; } th{ background:#E6F8B7; } table{ margin-top:20px; } </style> </head> <body> <table width="90%" border="0" cellpadding="0" cellspacing="0" align="center"> <tr> <th>姓名</th> <th>E-mail</th> <th>状态</th> <th>操作</th> </tr> <!-- 循环得到结果 --> {dede:datalist} <tr> <td>{dede:field.name /}</td> <td>{dede:field.mail /}</td> <td> {dede:if field.tag==0} 未录取 {else} <font color="red">已录取</font> {/dede:if} </td> <td> <a href="adenroll.php?action=pass&id={dede:field.id /}">[录取]</a> | <a href="adenroll.php?action=nopass&id={dede:field.id /}">[不通过]</a> | <a href="adenroll.php?action=delete&id={dede:field.id /}">[删除]</a> </td> </tr> {/dede:datalist} </table> <!-- 分页标签 --> <p style="text-align:center;font-size:15px;">{dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}</p> </body> </html>
No, you can use dz for the forum and integrate it together. For questions about dream weaving, you can search for the dream weaver administrator’s home on Baidu. There are many tutorials on dream weaving.
It’s available in dede’s help page. bbs.dedecms.com/136294.html This page has detailed instructions. You can download a product manual and take a look. The bottom part of the manual is secondary development. But this still depends on how you want to develop it.

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.

In PHP, use the clone keyword to create a copy of the object and customize the cloning behavior through the \_\_clone magic method. 1. Use the clone keyword to make a shallow copy, cloning the object's properties but not the object's properties. 2. The \_\_clone method can deeply copy nested objects to avoid shallow copying problems. 3. Pay attention to avoid circular references and performance problems in cloning, and optimize cloning operations to improve efficiency.

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

Key players in HTTP cache headers include Cache-Control, ETag, and Last-Modified. 1.Cache-Control is used to control caching policies. Example: Cache-Control:max-age=3600,public. 2. ETag verifies resource changes through unique identifiers, example: ETag: "686897696a7c876b7e". 3.Last-Modified indicates the resource's last modification time, example: Last-Modified:Wed,21Oct201507:28:00GMT.

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP is a server-side scripting language used for dynamic web development and server-side applications. 1.PHP is an interpreted language that does not require compilation and is suitable for rapid development. 2. PHP code is embedded in HTML, making it easy to develop web pages. 3. PHP processes server-side logic, generates HTML output, and supports user interaction and data processing. 4. PHP can interact with the database, process form submission, and execute server-side tasks.

PHP has shaped the network over the past few decades and will continue to play an important role in web development. 1) PHP originated in 1994 and has become the first choice for developers due to its ease of use and seamless integration with MySQL. 2) Its core functions include generating dynamic content and integrating with the database, allowing the website to be updated in real time and displayed in personalized manner. 3) The wide application and ecosystem of PHP have driven its long-term impact, but it also faces version updates and security challenges. 4) Performance improvements in recent years, such as the release of PHP7, enable it to compete with modern languages. 5) In the future, PHP needs to deal with new challenges such as containerization and microservices, but its flexibility and active community make it adaptable.

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version