Advertisement
panxop

Untitled

Nov 14th, 2013
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php
  2. $conexion=mysql_connect("localhost","root","") or die ("Problemas en la conexion");
  3. mysql_select_db("ejemplo",$conexion) or die ("Problemas en la seleccion de base de datos");
  4. $registros=mysql_query("select * from vendedores where mail='$_REQUEST[mail]'",$conexion) or die("Problemas en el select: ".mysql_error());
  5. echo "<h2>Base Ejemplo</2>";
  6. echo "<h3>Modificacion de datos</h3>";
  7. if ($reg=mysql_fetch_array($registros))
  8. {
  9. ?>
  10. <form action="pagina3.php" method="post">
  11. Ingrese nuevo mail :<input type="text" name="mailnuevo" value="<?php echo $reg['mail'] ?>"><br>
  12. <input type="hidden" name="mailviejo" value="<?php echo $reg['mail']?>">
  13. <input type="submit" value="Modificar">
  14. </form>
  15. <?php
  16. }
  17. else
  18. echo "No existe registro con dicho mail";
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement