DEDECMS custom form after submission jump page tutorial

Source: Internet
Author: User
Tags goto


This article describes how to modify the redirect link after the DEDECMS custom form is submitted. Share it with you for your reference. The specific implementation method is as follows:

Custom Form. After clicking submit, the page will jump to the homepage by default. We open plus/diy. php, which contains such code.

If ($ dsql-> executenonequery ($ query ))
{
$ Id = $ dsql-> GetLastID ();
If ($ diy-> public = 2)
{
// Diy. php? Action = view & diyid ={$ diy-> diyid} & id = $ id
$ Goto = "diy. php? Action = list & diyid = {$ diy-> diyid }";
$ Bkmsg = 'publishing successful, now turn to the form list page... ';
}
Else
{
$ Goto =! Emptyempty ($ pai_cmspath )? $ Export _cmspath :'/';
$ Bkmsg = 'Publish successful. Please wait for the administrator to handle this... ';
}
Showmsg ($ bkmsg, $ goto );
}
Find this line:

$ Goto =! Empty ($ pai_cmspath )? $ Export _cmspath :'/';
It means to jump to the home page. Let's modify it, for example:

$ Goto = "/abc.htm"

You can jump to the desired page, if you want to jump to the current page:

If ($ dsql-> executenonequery ($ query ))
{
$ Id = $ dsql-> GetLastID ();
If ($ diy-> public = 2)
{
// Diy. php? Action = view & diyid ={$ diy-> diyid} & id = $ id
$ Goto = "diy. php? Action = list & diyid = {$ diy-> diyid }";
$ Bkmsg = 'publishing successful, now turn to the form list page... ';

Echo "";
}
Else
{
$ Goto =! Emptyempty ($ pai_cmspath )? $ Export _cmspath :'/';
$ Bkmsg = 'Publish successful. Please wait for the administrator to handle this... ';
}
Showmsg ($ bkmsg, $ goto );
I hope this article will help you build your dedecms website.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.