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 // Este archivo es protegido por la ley del derechos de propiedad literaria. La ing..
Decoded Output download
?>
<html>
<head>
<title>Participantes</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<script>
body{
text-align: center;
}
h2{
color: #FFFFFF;
}
</script>
</head>
<body>
<?php
//Parametros de conexion a la bbdd
$servidor="localhost";
$usuario="root";
$clave="";
$basedatos="kata";
$conexion=new mysqli($servidor,$usuario,$clave,$basedatos);//Conexion a la bbdd
if($conexion->connect_error)//Comprobacion de la conexion con la bbdd
{
die("Error al conectarse con la base de datos: ".$conexion->connect_error);
}
$nage1="SELECT * FROM nage1";
$nage2="SELECT * FROM nage2";
$nage3="SELECT * FROM nage3";
$nage4="SELECT * FROM nage4";
$kime1="SELECT * FROM kime1";
$kime2="SELECT * FROM kime2";
$katame1="SELECT * FROM katame1";
$katame2="SELECT * FROM katame2";
$katame3="SELECT * FROM katame3";
$juno1="SELECT * FROM juno1";
$juno2="SELECT * FROM juno2";
$juno3="SELECT * FROM juno3";
$goshin1="SELECT * FROM goshin1";
$goshin2="SELECT * FROM goshin2";
$resultadonage1=$conexion->query($nage1);//Guarda en la variable el resultado la sentencia sql
$resultadonage2=$conexion->query($nage2);//Guarda en la variable el resultado la sentencia sql
$resultadonage3=$conexion->query($nage3);//Guarda en la variable el resultado la sentencia sql
$resultadonage4=$conexion->query($nage4);//Guarda en la variable el resultado la sentencia sql
$resultadokime1=$conexion->query($kime1);//Guarda en la variable el resultado la sentencia sql
$resultadokime2=$conexion->query($kime2);//Guarda en la variable el resultado la sentencia sql
$resultadokatame1=$conexion->query($katame1);//Guarda en la variable el resultado la sentencia sql
$resultadokatame2=$conexion->query($katame2);//Guarda en la variable el resultado la sentencia sql
$resultadokatame3=$conexion->query($katame3);//Guarda en la variable el resultado la sentencia sql
$resultadojuno1=$conexion->query($juno1);//Guarda en la variable el resultado la sentencia sql
$resultadojuno2=$conexion->query($juno2);//Guarda en la variable el resultado la sentencia sql
$resultadojuno3=$conexion->query($juno3);//Guarda en la variable el resultado la sentencia sql
$resultadogoshin1=$conexion->query($goshin1);//Guarda en la variable el resultado la sentencia sql
$resultadogoshin2=$conexion->query($goshin2);//Guarda en la variable el resultado la sentencia sql
?>
<h1 align="center"><u>Nage No Kata Grupo 1</u></h1>
<?php
while($registro=$resultadonage1->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/><h1 align="center"><u>Nage No Kata Grupo 2</u></h1>
<?php
while($registro=$resultadonage2->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Nage No Kata Grupo 3</u></h1>
<?php
while($registro=$resultadonage3->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Nage No Kata Grupo 4</u></h1>
<?php
while($registro=$resultadonage4->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Katame No Kata Grupo 1</u></h1>
<?php
while($registro=$resultadokatame1->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Katame No Kata Grupo 2</u></h1>
<?php
while($registro=$resultadokatame2->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Katame No Kata Grupo 3</u></h1>
<?php
while($registro=$resultadokatame3->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>kime No Kata Grupo 1</u></h1>
<?php
while($registro=$resultadokime1->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>kime No Kata Grupo 2</u></h1>
<?php
while($registro=$resultadokime2->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Ju-No Kata Grupo 1</u></h1>
<?php
while($registro=$resultadojuno1->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Ju-No Kata Grupo 2</u></h1>
<?php
while($registro=$resultadojuno2->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Ju-No Kata Grupo 3</u></h1>
<?php
while($registro=$resultadojuno3->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Goshin Jutsu Grupo 1</u></h1>
<?php
while($registro=$resultadogoshin1->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<h1 align="center"><u>Goshin Jutsu Grupo 2</u></h1>
<?php
while($registro=$resultadogoshin2->fetch_assoc())//Mientras que la sentencia devuelva registros, creamos una nueva fila con los resultados
{
?>
<table align="center" border="1">
<tbody>
<tr>
<th bgcolor="white" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["tori"];?></b></font></td>
<th rowspan="2" bgcolor="goldenrod" width="150" height="60" valign="middle"><font size="6"><font color="#FFFFFF"><?php echo $registro["comunidad"];?></font></font></td>
</tr>
<tr>
<th bgcolor="lightcyan" width="450" height="30" align="center" valign="middle"><font size="5"><b><?php echo $registro["uke"];?></b></font></td>
</tr>
</tbody>
</table>
<br/>
<?php
}
?>
<hr/>
<?php
$conexion->close();//Cierre de la conexion con la bbdd
?>
<hr/>
<p align="center">
<font size="5"><a href="index.html">Volver al inicio</a> <a href="insertar.html">Insertar participante</a> <a href="eliminar.php">Eliminar participante</a></font>
</p>
</body>
</html>
<?
Did this file decode correctly?
Original Code
<?php
// Este archivo es protegido por la ley del derechos de propiedad literaria. La ingenieria inversa de este codigo se prohibe estrictamente.
eval(gzinflate(base64_decode('
7Ztdb9s2FIavE2D/geCGwRniqqbcYogl5aJIg7Vr
N2zDboahoCXa4iKLCkk5yYb+9/FDkmVbzpJKRQeE
uXBI6ui8h0d8pKPEPI+Og1Susuir46MgJTjRjaNA
UpmR6GfMJY1pgXNJRODZQXN8RSQGqZTFmFyXdB3C
V0zZ5HIs7woCQWx7IZTkVnra/wzEKeaCyLCUi/H3
EHjWkYg5LaRpz1ly949uHOmzxjijy/wMxMoP4TM9
/lF/pMjaxCxj/Ax8/dr8bI4br97GbeDVswq0gG4Y
k/MiLXTD89QssZoPZwIkRIdObinLAQYZBvN5khi5
bwTha5owHsKMxThLmZBwZg+VosScshByxprBOMNr
EsK6O8eCJFgyEcIrLLEdriwrxTAnN2B1J64zOmrk
Tmvvp9bj6cbTyczzXnVHSxejxu04Uq2cxPID4Zzx
E33SquBsjmN9opqyOrOZtWpsebLJPkooGcELfT7A
mbGOpb6cjb0KSrsygZ0B+OygvM2HuVTV/HO8JJMQ
/nrx48Wr38B34PUvP70DZrBOnu6gLgvUtvC7LPy2
xbTLYlpbXNHVfhxmsG2BuiyaOPS17fJih7etULfV
ji+/26qZ119lzvb0zGDbAnVZoLaF32XRqCyZSGm+
p1MNb1uhbqtazZpyIspM4oTZq99aLtcl4Xcjuyr0
Er9Uyz/BgJh1tlYo4HlGAMlA40IfEPo2kcdUta6z
Dgl0QAINJ+EfkPCHk5gekJgOI2EJ2Jcw48NJoAMS
A12LmsEOEXtkSBl0UGbQ2fgHZQZaXfY2si9ixoeT
QAck0HAS/gGJgRJV3wn3RaojQ8qggzK9ElbdhM+j
zQ05SCfAVFwhtBUXjIIyeq/uLeA9A2/VUgOXvCwY
mAReGamiahJtlVGVm5uUZmSkprGkQlVU4c59fhwt
iIzTD1gIFo9OVC3yjio1jgVQs9sONiHrkmRrDGpn
4hTEnOCVqtPKHIO8JOrggtrqBWRquBETrdpFf9iZ
2olKk6TtuYI54wlRtd0E2pwos7paNB1etVQzBWC+
NNVnCNV0pSp3b2gi0xBOXzyHICV0marK11ftHZF1
1V/RJMmISvBClclA0L9VnfhCdeeRSScgccpAk8M/
oGScwj9n5yrtysTTZ6lfMmnHxNmNUHV6CBHchLdk
WUJyzpImxEk7xJfP74/pZd2t3FW1NjwQZsxWZU4T
nFSxVnHuhquavDuvTdyZji++w/lnT215Re7JbDtU
r7UgVEcvoqoz594OCx/tmtuwpSweDBjqARhygDnA
nihgj3uM+T0o8x1ljjJH2QMom/agbOooc5Q5ynYp
e2ve+gd6Kav+IPJlSXOUOco+E2W7mGnOdih7LGqo
F2rIoeZQe6qoPYIyvxdlvqPMUeYeaHuo6X+yDVU5
Ulc3Osye0NtZm61PQw31QM3VjQ41h9o9vL0px8M8
2MwXHr4AbQ40B9r/uHTc4wv14As5vhxfjq97+fJ7
8OU7vhxfjq82X5fmW5PgTSlF2bNCrL7n6d7IHGhP
BbRenKFenLm/fDjOnjRnLWh0s72xTq1fMjLbACnh
nPzHXr7qedm4D4pdfq38TiowSDlZhJDmCbl9pvdy
wuh3lq2J2QpIcxpTFng4+jafi2L2kM+WS0G4xLzy
+kPVBUVr3+knuiYZXdFcuVaJg9FF1dvzXF1Du2m0
sPtFq+sWmH2r0XFw/i8=
')));
?>
Function Calls
gzinflate | 1 |
base64_decode | 1 |
Stats
MD5 | ff54562fa6c7bf736c9d857f7cda34bd |
Eval Count | 1 |
Decode Time | 107 ms |