Quote:
Originally Posted by nerbert
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 [DATE]1374761990[/DATE] at [TIME]1374761990[/TIME] ---------------
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:
PHP Code:
require_once('./global.php');
//YOUR CUSTOM PHP HERE
$vbulletin->url = 'showthread.php?t=3';
print_standard_redirect('GALODOIDO hehe', false, true);