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");
- echo "<h2>Base Ejemplo</h2>";
- echo "<h3>Modificacion de datos<h3>";
- $registros=mysql_query("update vendedores set mail='$_POST[mailnuevo]' where mail='$_POST[mailviejo]'",$conexion) or die ("Problemas en el select:".mysql_error());
- echo "El mail fue modificado con exito";
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement