Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <meta name="viewport" c..

Decoded Output download

<?  <!DOCTYPE html> 
<html lang="id"> 
<head> 
<meta charset="UTF-8"> 
<meta name="viewport" content="width=device-width, initial-scale=1.0"> 
<title>Unduh File</title> 
<style> 
/* CSS untuk gaya tautan */ 
a { 
  display: inline-block; 
  padding: 10px 20px; 
  background-color: #4CAF50; 
  color: white; 
  text-decoration: none; 
  border-radius: 5px; 
  font-family: Arial, sans-serif; 
} 
 
a:hover { 
  background-color: #45a049; 
} 
 
/* CSS untuk tata letak */ 
.container { 
  text-align: center; 
  margin-top: 50px; 
} 
</style> 
</head> 
<body> 
 
<div class="container"> 
  <!-- Tautan untuk mengunduh file dari URL yang Anda berikan --> 
  <a href="https://pba.umt.ac.id/?sdm_process_download=1&download_id=2383" onclick="unduhFile()">Unduh File</a> 
</div> 
 
<script> 
// Fungsi untuk mengarahkan ke halaman lain setelah unduhan selesai 
function unduhFile() { 
  alert("File sedang diunduh. Silakan tunggu."); 
  setTimeout(function() { 
    window.location.href = "halaman_lain.html"; // Ganti "halaman_lain.html" dengan URL halaman yang diinginkan 
  }, 2000); // Waktu tunda dalam milidetik (contoh: 2000 = 2 detik) 
} 
</script> 
 
</body> 
</html> 
 ?>

Did this file decode correctly?

Original Code

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unduh File</title>
<style>
/* CSS untuk gaya tautan */
a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
}

a:hover {
  background-color: #45a049;
}

/* CSS untuk tata letak */
.container {
  text-align: center;
  margin-top: 50px;
}
</style>
</head>
<body>

<div class="container">
  <!-- Tautan untuk mengunduh file dari URL yang Anda berikan -->
  <a href="https://pba.umt.ac.id/?sdm_process_download=1&download_id=2383" onclick="unduhFile()">Unduh File</a>
</div>

<script>
// Fungsi untuk mengarahkan ke halaman lain setelah unduhan selesai
function unduhFile() {
  alert("File sedang diunduh. Silakan tunggu.");
  setTimeout(function() {
    window.location.href = "halaman_lain.html"; // Ganti "halaman_lain.html" dengan URL halaman yang diinginkan
  }, 2000); // Waktu tunda dalam milidetik (contoh: 2000 = 2 detik)
}
</script>

</body>
</html>

Function Calls

None

Variables

None

Stats

MD5 4157425182fe1b848fbeb3f941b22a9f
Eval Count 0
Decode Time 58 ms