[ create a new paste ] login | about

Link: http://codepad.org/mQERWb4c    [ raw code | fork ]

Ludim - Plain Text, pasted on Oct 16:
<!DOCTYPE html>
<<html>
<head>
	<title>Perzonalizado</title>
	<link rel="stylesheet" type="text/css" href="css/estilo.css" media="screen">

</head>
<body>

<?php
	// solo lo manda aqui cuando se comprobo que es el usuario
	include 'backend/conexion.php';
	$obConexion = new FuncionesBaseDatos();
	$conexion = $obConexion->Conectar('conociendo_mty');
	$user = $_COOKIE["user"];
	print_r($_COOKIE);
	$consulta = $obConexion->consultaClv($conexion, $user);
	echo "Hola<b><script> document.write(sessionStorage.getItem('n_C'));</script></b> tu ultima conexion fue: <b>", $consulta[3],"</b>";
	$obConexion->Desconectar($conexion);
?>

</body>
</html>


Create a new paste based on this one


Comments: