View Single Post
  #1  
Old 23rd November 2018, 07:59
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Smile Basic redirect script
edit takelogin.php script, add this:
Code:
$redirect = true;
if($redirect === true){

echo "<div style='background-color: #353939;border: 1px solid #666;color:green;'><text>Successful Message</text></div>
<div style='padding: 0.1em;'></div>
<text>Thank You!, Accessing Account 
</text>
<script>
setTimeout(function () { window.location.href= 'index.php'; // the redirect goes here
},5000); // 5 seconds
</script>";
} else {
// go fuck yourself for not believing!!
}
Replace:
Code:
header("location= {$INSTALLER09['baseurl']}/index.php");
Reply With Quote