MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //proc/self/cwd/httpdocs/registrado.php
<title>Correos Serviasjudinet - Formulario de Registro</title>
<?php

include ("bd.php");
global $dbi;

	$result = sql_query("INSERT INTO asjudinet_correoafiliados values ('$HTTP_GET_VARS[clave]', '$HTTP_GET_VARS[login]', '$HTTP_GET_VARS[clave]', '$HTTP_GET_VARS[correoalterno]', '$HTTP_GET_VARS[nombre]', '$HTTP_GET_VARS[apellidos]', '$HTTP_GET_VARS[pais]', '$HTTP_GET_VARS[ciudad]', '$HTTP_GET_VARS[direccion]', '$HTTP_GET_VARS[telefono]', '$HTTP_GET_VARS[Pregunta]', '$HTTP_GET_VARS[respuestasec]', '$HTTP_GET_VARS[dianacimiento]-$HTTP_GET_VARS[mesnacimiento]-$HTTP_GET_VARS[annonacimiento]', '$HTTP_GET_VARS[diaregistro]-$HTTP_GET_VARS[mesregistro]-$HTTP_GET_VARS[annoregistro]', '$HTTP_GET_VARS[codigo]', '$HTTP_GET_VARS[contrato]', '$HTTP_GET_VARS[tipocontrato]', '$HTTP_GET_VARS[Entidad]' )", $dbi);
	$bienvenida = "<center>Gracias por crear su Cuenta de Correo en Serviasjudinet <b>$HTTP_GET_VARS[nombre] $HTTP_GET_VARS[apellidos]</b><br></center><P><center><b>En 24 horas activaremos su nueva cuenta de correo.</b><br><br><a href=\"http://www.asjudinet.com/\">Retornar a la P&aacute;gina Principal de Serviasjudinet </a></center></p>";
				
	$msg = "Ha llegado este mensaje desde el Formulario de Registro de Correo de Serviasjudinet\n";
	$msg .= "\n\nLogin : $HTTP_GET_VARS[login]\n";
	$msg .= "\nClave : $HTTP_GET_VARS[clave]\n";
	$msg .= "\nCorreo Alterno : $HTTP_GET_VARS[correoalterno]\n";
	$msg .= "\nFecha de registro : $HTTP_GET_VARS[diaregistro]-$HTTP_GET_VARS[mesregistro]-$HTTP_GET_VARS[annoregistro]\n";
	$msg .= "\nFecha nacimiento : $HTTP_GET_VARS[dianacimiento]-$HTTP_GET_VARS[mesnacimiento]-$HTTP_GET_VARS[annonacimiento]\n";
	$msg .= "\nNombre : $HTTP_GET_VARS[nombre]\n";
	$msg .= "\nApellidos : $HTTP_GET_VARS[apellidos]\n";
	$msg .= "\nCiudad : $HTTP_GET_VARS[ciudad]\n";
	$msg .= "\nCodigo : $HTTP_GET_VARS[codigo]\n";
	$msg .= "\nContrato : $HTTP_GET_VARS[contrato]\n";
	$msg .= "\nTipo Contrato : $HTTP_GET_VARS[tipocontrato]\n";
	$msg .= "\nEntidad : $HTTP_GET_VARS[Entidad]\n";
	$msg .= "\nPregunta secreta : $HTTP_GET_VARS[Pregunta]\n";
	$msg .= "\nRespuesta secreta : $HTTP_GET_VARS[respuestasec]\n\n";
	$to = "alberto.fonseca@asjudinet.com";
	$subject = "Nueva cuenta de Correo";
	$mailheaders = "From: correo@asjudinet.com\n";
	$mailheaders .= "To: alberto.fonseca@asjudinet.com\n\n";
	mail($to, $subject, $msg, $mailheaders);
	echo "<div align=\"center\"><img src=\"logo_asjudinet.gif\"></div><br><br>$bienvenida<br></p>";

?>