PHP Tool & Free Code to Decode - eval gzinflate base64_decode. Just copy the below code and save it as decrypt.php and execute it. Paste your encoded code in the text area and press the Decode button in the web page.
<html>
<head>
<title>PHP Tool & Code to Decode - eval gzinflate base64_decode</title>
</head>
<body><h1>eval gzinflate base64_decode Decoder PHP Code</h1>
<form id="form1" name="form1" method="post" action="decrypt.php">
<textarea name="coded" cols="60" rows="8" id="coded"></textarea>
<input type="submit" name="Submit" value="Decode" />
</form>
<?php
$contents=stripslashes($_POST["coded"]);
if(trim($contents)!="")
{
while (preg_match("/eval\(gzinflate/",$contents))
{
$contents=preg_replace("/<\?|\?>/", "", $contents);
eval(preg_replace("/eval/", "\$contents=", $contents));
}
?>
<BR/>
<textarea name="decoded" cols="60" rows="8" id="decoded"><? echo $contents?></textarea>\
<?
}
?>
</body>
</html>