Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $conexion=mysql_connect("localhost","root","") or die ("Problemas en la conexion");
- mysql_select_db("ejemplo",$conexion) or die ("Problemas en la seleccion de base de datos");
- $registros=mysql_query("select * from vendedores where mail='$_REQUEST[mail]'",$conexion) or die("Problemas en el select: ".mysql_error());
- echo "<h2>Base Ejemplo</2>";
- echo "<h3>Modificacion de datos</h3>";
- if ($reg=mysql_fetch_array($registros))
- {
- ?>
- <form action="pagina3.php" method="post">
- Ingrese nuevo mail :<input type="text" name="mailnuevo" value="<?php echo $reg['mail'] ?>"><br>
- <input type="hidden" name="mailviejo" value="<?php echo $reg['mail']?>">
- <input type="submit" value="Modificar">
- </form>
- <?php
- }
- else
- echo "No existe registro con dicho mail";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement