Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/09/2005, 17:19
Saldu
Invitado
 
Mensajes: n/a
Puntos:
Claro..pero yo ya tengo el randomizador.. el problema es.. que no se,DÓNDE PONERLO,Y CÓMO...

No se si no me sé explicar o qué.. pero acá,por si acaso,pongo el formulario.php que es el que envía los datos al registrar.php, se entiende no?
Yo,lo que les pido,porfavor,es que me modifiquen los archivos que hay que modificar,y que los arreglen,para que en el registrar.php suba (si el usuario se registró con exito) que suba los datos y la cntraseña randomizada que salió.. y que mande un mail(eso ya l tengo hecho) pero que en el cuerpo del mensaje poner ".$nombre_de_la_variable_del_password_randomizado. "


Código:
<?php 
session_start(); 

if(!isset($_SESSION['idioma'])){ 
    $_SESSION['idioma'] = 'spanish'; 
} 

include("lang/".$_SESSION['idioma'].".inc.php"); 

?> 

<html>

<head>
<script language="JavaScript">
function estado(){
	var est=0
	var re = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
	if (!re.test(formulario.user_email.value)) {
		alert('Dirección de email inválida');
		est=0
	}else{
		if (document.formu.chk.checked){
			est=1
		}else{
			alert('Debes aceptar las bases del contrato');
			est=0
		}
	}
	
	if(est==1){
		formulario.submit()
	}
	return false;
}

</script>



</head>

<body>
<body bgcolor=#009900 link=#009900 alink=#009900 vlink=#009900>

<form name="formu" method="post" id=formulario action="registrar.php">


<p><?php echo nombreform;?>*<input type="text" name="nombre" SIZE="12"  MAXLENGTH="40">

</p>
<p><?php echo apellidoform;?>*<input type="text" name="apellido" SIZE="12"  MAXLENGTH="40">

<p><?php echo emailform;?>*

<input type="text" name="user_email" SIZE="15"  MAXLENGTH="50">
</p>

Tel&eacute;fono*

<input type="text" name="telefono" SIZE="15"  MAXLENGTH="50">

Ciudad*
<input type="text" name="ciudad" SIZE="15"  MAXLENGTH="50">

<p>Calle*

<input type="text" name="domicilio" SIZE="15"  MAXLENGTH="50">


N&uacute;mero de la calle*
<input type="text" name="numdomicilio" SIZE="15"  MAXLENGTH="50">

</p>


<IFRAME SRC="<? print("contrato-".$_SESSION['idioma'].".txt"); ?>" NAME="Zone1" HEIGHT="200" WIdTH="450"> 
Sorry, your browser doesn't support iframes. 
</IFRAME><br>
   <input type="checkbox" name="chk"><font color=#FFFFFF>Acepto las bases del contrato, y me comprometo a cumplir con el.</font>



<br>
<p> <?php echo nombredeusuarioform;?>*
<input type="text" name="username" SIZE="12"  MAXLENGTH="20"><a href="#" onmouseover="doTooltip(event,1)" onmouseout="hideTip()"><img src="Images/iconpregunt.gif" align="centre" alt="" border="0"></a>
</p>
<p> <?php echo contrasenaform;?>*
<input type="password" name="user_password" SIZE="22"  MAXLENGTH="30"><a href="#" onmouseover="doTooltip(event,2)" onmouseout="hideTip()"><img src="Images/iconpregunt.gif" align="centre" alt="" border="0"></a>
</p>

<input type="button" name="BTN_ENVIAR" onClick="estado()"  value="<?php echo registrarmeform;?>"> 
<input type="reset" value="<?php echo reseteoform;?>">

<input type="hidden" name="paisregistro" value="<?php echo $pais;?>">
<?php } ?>
</FORM>
</div>
<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>
</body>


</script>
<noscript>
<plaintext>

</html>