PDA

View Full Version : Redirect Previous Page


silpher
07-25-2013, 01:57 AM
Hello,

I'm working on a plugin that when user Hits a button, an action (PHP Code) is executed and user is redirected to previous page. It's the same when you Log-in and get redirected to previous page.

How to do that?

Thanks in advance!

nerbert
07-25-2013, 02:03 AM
if all you want to do is go back one page you just use JavaScript

<input type="button" value="Back" onclick="window.history.back();">

silpher
07-25-2013, 02:49 AM
if all you want to do is go back one page you just use JavaScript

<input type="button" value="Back" onclick="window.history.back();">



I wanted to run a php code and then get back to previous page, like when you login in forum, any idea?

--------------- Added 1374761990 at 1374761990 ---------------

I got the solution and would like to share with you.

I made a file "teste.php" at forum root, which includes "./global.php" and a desired custom PHP code, and finally I defined URL to be redirect in variable "$vbulletin->url = 'showthread.php?t=3' and used the function "print_standard_redirect('redirect message', false, true);" to execute the redirection.

Here it goes:

require_once('./global.php');

//YOUR CUSTOM PHP HERE

$vbulletin->url = 'showthread.php?t=3';
print_standard_redirect('GALODOIDO hehe', false, true);