Cita:
Iniciado por tquezada y me puedes mostrar lo que quieres encriptar así buscamos una solución
hola quiero encripta algo como esto
Código PHP:
Ver original//AQUI EMPIEZO A ENCRIPTAR
$encriptoTodoEsteCodigo="
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<p align="center">foro del portal de autos</p>
<table width="600" border="1" align="center">
<tr>
<td width="190">titulo</td>
<td width="128">fecha</td>
<td width="260">respuesta</td>
</tr>
</table>
<?php
$host="localhost";
$user="root";
$password="";
$db="foro";
$titulo = $row["titulo"];
$id = $row["id"];
$titulo = $row["titulo"];
$fecha = $row["fecha"];
$respuestas = $row["respuestas"];
echo("<table width='600' border='1' align='center'>\n");
echo("<tr>\n");
echo("<td width='15'><a href='foroforo.php?id=$id'> ver</a></td>\n");
echo("<td width='150'>$titulo</td>\n");
echo("<td width='150'>".date("d-m-y", $fecha)."</td>\n"); echo("<td width='150'>$respuestas</td>\n");
echo("<tr>\n");
echo("<table>\n");
echo $id;
}
?>
<a href="formularioforo.php?respuestas=0">Añadir Menaje</a>
</body>
</html>
";
//AQUI TERMINO DE ENCRIPTAR
¿la pregunta seria como encripto y como decencripto?