You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- include "header.php";
- connecte("ecomonde");
- $id=$_POST['id'];
- $pseudo=$_POST['pseudo'];
- $pass=sha1($_POST['password']);
-
- $sql="UPDATE membres SET pseudo='$pseudo',pass='$pass'WHERE id=$id";
- mysql_query($sql) or die(include('index.php?msg=0'));
- if($sql) header("location:index.php?msg=1");
- ?>
|