Answer the question
In order to leave comments, you need to log in
How to make a download link in wp?
I saw on many sites that when you click on the download link, a timer is triggered after which the download link is available, or the link will be available after a person shares a post on a social network, how to organize this on Wordpress, can anyone suggest a plugin?
Answer the question
In order to leave comments, you need to log in
Nothing surprising. You are passing the variable via GET key=1
Inside PHP $_SERVER['REQUEST_URI'] = /login/?key=1
Further down the code
$page = 'login/?key=1';
if (file_exists("all/login/?key=1.php"))
include "all/login/?key=1.php";
else if ($_SESSION['logged_user'] and file_exists("auth/login/?key=1.php"))
include "auth/login/?key=1.php";
else if (!$_SESSION['logged_user'] and file_exists("guest/login/?key=1.php"))
include "guest/login/?key=1.php";
else
header('Location: /404');
PHP Start | Practice: Lesson 1. Implementing MVC
https://www.youtube.com/watch?v=ba3M3_Myrqg&index=...
they will tell you and show you how to implement what you want
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question