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

Signing you up...

Thank you for signing up!

PHP Decode

$id=$_GET['id']; for($i=1;$i<=$id;$i++){ for($j=1; $j<=$id; $j++){ ..

Decoded Output download

<?  $id=$_GET['id']; 
    for($i=1;$i<=$id;$i++){ 
        for($j=1; $j<=$id; $j++){ 
         if(($i==$j) || (($i+$j)==($id-1))){ 
            echo "*"; 
         } 
         
        } 
   echo "<br>"; 
 
     } ?>

Did this file decode correctly?

Original Code

$id=$_GET['id'];
    for($i=1;$i<=$id;$i++){
        for($j=1; $j<=$id; $j++){
         if(($i==$j) || (($i+$j)==($id-1))){
            echo "*";
         }
        
        }
   echo "<br>";

     }

Function Calls

None

Variables

$i 1
$id None

Stats

MD5 0e83728d7d96ff738e697a87f12729cc
Eval Count 0
Decode Time 391 ms