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

Signing you up...

Thank you for signing up!

PHP Decode

<?php ?> <html> <head> <title>Prediksimu</title> </head> <body> <form method=..

Decoded Output download

<?php 
 
?> 
<html> 
<head> 
<title>Prediksimu</title> 
</head> 
 
<body> 
 
<form method="post"> 
<table style="vertical-align: text-top;"> 
 
<tr> 
<td><h2>isi tulisan kau disini</h2></td> 
<td> <textarea name="text1" style="width: 700px; height: 500px;"> 
<?php if (!empty($_REQUEST['text1'])) echo rawurldecode($_REQUEST['text1']); ?></textarea></td> 
</tr> 
 
<tr> 
<td></td> 
<td><input type="submit" /></td> 
</tr> 
</table> 
</form> 
 
<?php 
 
if (!empty($_REQUEST['text1'])) 
{ 
  require_once('adz.php'); 
  $luna = new LunaMaya(); 
 
  $userWords = array( 
                'Polda Metro Jaya', 
                ); 
 
  $defaultWords = array( 
                'dari', 
                ); 
 
  $stopWords = array_merge($userWords, $defaultWords); 
 
  $text1 = $_REQUEST['text1']; 
  $text2 = $luna->reWriteIndo($text1, $stopWords, false); 
 
  similar_text($text1, $text2, $percent); 
  $percent = 100 - $percent; 
 
  //printf("text: %s

text2: %s

 Uniqueness: %0.2f%%
", $text1, $text2, $percent); 
 
  if (!empty($text2)) 
  { ?> 
 
<div style="margin-left: 260px;"> 
  <h2>hasil tulisan artikel kau</h2> 
  <div style="border: 2px solid; width: 700px;"> 
  <?php echo nl2br($text2); ?> 
  </div> 
</div> 
<?php 
  } 
} 
?> 
 
&copy; <strong>prediksimu.com</strong> 
</body> 
</html>

Did this file decode correctly?

Original Code

<?php

?>
<html>
<head>
<title>Prediksimu</title>
</head>

<body>

<form method="post">
<table style="vertical-align: text-top;">

<tr>
<td><h2>isi tulisan kau disini</h2></td>
<td> <textarea name="text1" style="width: 700px; height: 500px;">
<?php if (!empty($_REQUEST['text1'])) echo rawurldecode($_REQUEST['text1']); ?></textarea></td>
</tr>

<tr>
<td></td>
<td><input type="submit" /></td>
</tr>
</table>
</form>

<?php

if (!empty($_REQUEST['text1']))
{
  require_once('adz.php');
  $luna = new LunaMaya();

  $userWords = array(
                'Polda Metro Jaya',
                );

  $defaultWords = array(
                'dari',
                );

  $stopWords = array_merge($userWords, $defaultWords);

  $text1 = $_REQUEST['text1'];
  $text2 = $luna->reWriteIndo($text1, $stopWords, false);

  similar_text($text1, $text2, $percent);
  $percent = 100 - $percent;

  //printf("text: %s\n\ntext2: %s\n\n Uniqueness: %0.2f%%\n", $text1, $text2, $percent);

  if (!empty($text2))
  { ?>

<div style="margin-left: 260px;">
  <h2>hasil tulisan artikel kau</h2>
  <div style="border: 2px solid; width: 700px;">
  <?php echo nl2br($text2); ?>
  </div>
</div>
<?php
  }
}
?>

&copy; <strong>prediksimu.com</strong>
</body>
</html>

Function Calls

None

Variables

None

Stats

MD5 f7f0be8a43e02363fb98c849e813815e
Eval Count 0
Decode Time 73 ms