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="en"> <head> <meta charset="UTF-8"> <meta name="viewp..

Decoded Output download

<?  <!DOCTYPE html> 
<html lang="en"> 
 
<head> 
  <meta charset="UTF-8"> 
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
  <title>ModelXAIWEB</title> 
  <style> 
    /* Your existing styles here */ 
    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    } 
 
    /* Background and Container Styles */ 
    body { 
      background: url('https://kingsky.storage/Solitude.jpg') no-repeat center center/cover; 
      position: relative; 
      height: 100vh; 
      overflow: hidden; 
      display: flex; 
      justify-content: center; 
      align-items: center; 
      font-family: 'Arial', sans-serif; 
    } 
 
    #particles-js { 
      position: absolute; 
      width: 100%; 
      height: 100%; 
    } 
 
    .container { 
      position: relative; 
      z-index: 1; 
    } 
 
    .header { 
      font-size: 30px; 
      color: #fff; 
      margin-bottom: 20px; 
      text-transform: uppercase; 
    } 
 
    .input-group { 
      background-color: rgba(0, 0, 0, 0.3); 
      padding: 20px; 
      border-radius: 5px; 
    } 
 
    .input-group input { 
      background-color: #fff; 
      color: #333; 
      padding: 10px; 
      border: none; 
      border-radius: 3px; 
      margin: 5px 0; 
      width: 100%; 
      box-sizing: border-box; 
    } 
 
    .input-group button { 
      background-color: #1f8a70; 
      color: #fff; 
      padding: 10px; 
      border: none; 
      border-radius: 3px; 
      cursor: pointer; 
      width: 100%; 
      margin-top: 10px; 
    } 
 
    .input-group button:hover { 
      background-color: #0f6d5f; 
    } 
 
    /* Other styles */ 
  </style> 
</head> 
 
<body> 
  <div class="container"> 
    <h1 class="header">ModelXAIWEB</h1> 
    <div class="input-group"> 
      <input type="text" placeholder="Enter some text here"> 
      <button>Submit</button> 
    </div> 
  </div> 
 
  <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> 
  <script> 
    particlesJS('particles-js', { 
      particles: { 
        number: { 
          value: 100, 
          density: { 
            enable: true, 
            value_area: 800 
          } 
        }, 
        shape: { 
          type: "circle", 
          stroke: { 
            width: 0, 
            color: "#fff" 
          } 
        }, 
        opacity: { 
          value: 0.5, 
          random: true, 
          anim: { 
            enable: true, 
            speed: 1, 
            opacity_min: 0.1, 
            sync: false 
          } 
        }, 
        size: { 
          value: 3, 
          random: true, 
          anim: { 
            enable: true, 
            speed: 4, 
            size_min: 0.1, 
            sync: false 
          } 
        }, 
        line_linked: { 
          enable: true, 
          distance: 150, 
          color: "#fff", 
          opacity: 0.4, 
          width: 1 
        }, 
        move: { 
          enable: true, 
          speed: 2, 
          direction: "none", 
          random: false, 
          straight: false, 
          out_mode: "out", 
          bounce: false, 
          attract: { 
            enable: false, 
            rotateX: 600, 
            rotateY: 1200 
          } 
        } 
      }, 
      interactivity: { 
        detect_on: "canvas", 
        events: { 
          onhover: { 
            enable: true, 
            mode: "repulse" 
          }, 
          onclick: { 
            enable: true, 
            mode: "push" 
          } 
        } 
      } 
    }); 
  </script> 
</body> 
 
</html> 
 ?>

Did this file decode correctly?

Original Code

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>ModelXAIWEB</title>
  <style>
    /* Your existing styles here */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Background and Container Styles */
    body {
      background: url('https://kingsky.storage/Solitude.jpg') no-repeat center center/cover;
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Arial', sans-serif;
    }

    #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .container {
      position: relative;
      z-index: 1;
    }

    .header {
      font-size: 30px;
      color: #fff;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .input-group {
      background-color: rgba(0, 0, 0, 0.3);
      padding: 20px;
      border-radius: 5px;
    }

    .input-group input {
      background-color: #fff;
      color: #333;
      padding: 10px;
      border: none;
      border-radius: 3px;
      margin: 5px 0;
      width: 100%;
      box-sizing: border-box;
    }

    .input-group button {
      background-color: #1f8a70;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      width: 100%;
      margin-top: 10px;
    }

    .input-group button:hover {
      background-color: #0f6d5f;
    }

    /* Other styles */
  </style>
</head>

<body>
  <div class="container">
    <h1 class="header">ModelXAIWEB</h1>
    <div class="input-group">
      <input type="text" placeholder="Enter some text here">
      <button>Submit</button>
    </div>
  </div>

  <script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
  <script>
    particlesJS('particles-js', {
      particles: {
        number: {
          value: 100,
          density: {
            enable: true,
            value_area: 800
          }
        },
        shape: {
          type: "circle",
          stroke: {
            width: 0,
            color: "#fff"
          }
        },
        opacity: {
          value: 0.5,
          random: true,
          anim: {
            enable: true,
            speed: 1,
            opacity_min: 0.1,
            sync: false
          }
        },
        size: {
          value: 3,
          random: true,
          anim: {
            enable: true,
            speed: 4,
            size_min: 0.1,
            sync: false
          }
        },
        line_linked: {
          enable: true,
          distance: 150,
          color: "#fff",
          opacity: 0.4,
          width: 1
        },
        move: {
          enable: true,
          speed: 2,
          direction: "none",
          random: false,
          straight: false,
          out_mode: "out",
          bounce: false,
          attract: {
            enable: false,
            rotateX: 600,
            rotateY: 1200
          }
        }
      },
      interactivity: {
        detect_on: "canvas",
        events: {
          onhover: {
            enable: true,
            mode: "repulse"
          },
          onclick: {
            enable: true,
            mode: "push"
          }
        }
      }
    });
  </script>
</body>

</html>

Function Calls

None

Variables

None

Stats

MD5 d109fd840b07044924c02c007811abdf
Eval Count 0
Decode Time 56 ms