Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/03/2013, 00:44
marianomartelli
 
Fecha de Ingreso: agosto-2012
Ubicación: Barcelona
Mensajes: 243
Antigüedad: 12 años, 3 meses
Puntos: 1
Respuesta: Agregar informacion al registro usuarios

Hola,
Codigo registrar.php
--------------------------------
<html>
<head>
<title> Formulario de registro</title>



</head>

<body>
<h1>Formulario de registro</h1>
<h5>Los campos con (*) son requeridos.</h5>
<form method="POST" action=""/>
<table>
<tr>
<td>
* Empresa:
</td>
<td>
<input type="name" name="empresa" />
</td>
</tr>
<tr>
<td>
Cif:
</td>
<td>
<input type="text" name="cif" />
</td>
</tr>
<tr>
<td>
* Usuario:
</td>
<td>
<input type="text" name="usuario" />
</td>
</tr>
<tr>
<td>
* Contraseña:
</td>
<td>
<input type="password" name="passwd1" />
</td>
</tr>
<tr>
<td>
* Repetir Contraseña:
</td>
<td>
<input type="password" name="rpass" />
</td>
</tr>
<tr>
<td>
Categoria:
</td>
<td>
<input type="text" name="categoria" />
</td>
</tr>
<tr>
<td>
Descripción:
</td>
<td>
<input type="text" name="descripcion" />
</td>
</tr>

<tr>
<td>
Dirección:
</td>
<td>
<input type="text" name="direccion" />
</td>
</tr>
<tr>
<td>
Codigo postal:
</td>
<td>
<input type="text" name="cod_postal" />
</td>
</tr>
<tr>
</table>
<input type="submit" name="submit" value="Registrarse" /> <input type="reset"/>
</form>
<?php
if(isset($_POST['submit'])) {
require("registronew.php");
}
?>
</body>
-------------------------------------------------
registronew.php
-------------------------------------------
<?php
$empresa = $_POST['empresa'];
$cif = $_POST['cif'];
$usuario = $_POST['usuario'];
$passwd1 = $_POST['passwd1'];
$reppass = $_POST['rpass'];
$categoria = $_POST['categoria'];
$descripcion = $_POST['descripcion'];
$direccion = $_POST['direccion'];
$cod_postal = $_POST['cod_postal'];
$poblacion = $_POST['poblacion'];
$provincia = $_POST['provincia'];
$telefono = $_POST['telefono'];
$fax = $_POST['fax'];
$movil = $_POST['movil'];
$mail = $_POST['mail'];
$web = $_POST['web'];
$horario = $_POST['horario'];
$reqlen = strlen($empresa) * strlen($cif) * strlen($usuario) * strlen($passwd1) * strlen($reppass) * strlen($categoria) * strlen($descripcion) * strlen($direccion) *
strlen($cod_postal) * strlen($poblacion) * strlen($provincia) * strlen($telefono) * strlen($fax) * strlen($movil) * strlen($mail) * strlen($web) *
strlen($horario);

if ($reqlen > 0) {
if ($passwd1 === $reppass) {
include ("conexion.php");
$passwd1 = md5($passwd1);
mysql_query("INSERT INTO dato_empresa VALUES('', '$empresa', '$cif','$usuario', '$passwd1', '$categoria',
'$descripcion', '$direccion', '$cod_postal', '$poblacion', '$provincia', '$telefono', '$fax', '$movil',
'$mail', '$web', '$horario')");
mysql_close($conexion);
echo 'se ha registrado exitosamente';
}else{
echo 'por favor, introduzca dos contraseñas identicas.';
}
} else {
echo 'por favor rellene todos los campos requeridos.';

}


?>

--------------------------
Como dije, necesitaria guardar el recorrido de una imagen a todos los que se registran al campo imagenprin de la tabla dato_empresa.
Esta imagen tiene el siguiente recorridode images/imagenprin.jpg
y insertar la palabra "No" al campo payimgprn.
Gracia