Recent content by Nycholas C

  1. N

    How to display a friend list in php?

    ///// I have two tables.Mymebers and eBuddies. ebuddies haves id, buddy_id and status rows. myMembers has all my members info- Name, email, ect... this script shows the buudy id of the session user. How can i make it show the my members info like name. eBuddies 'buddy_id' = myMembers 'id'...
  2. N

    PHP when i try to update users password, the password is deleted, so the user

    has no password, reset pasword? <?php session_start(); $user = $_SESSION['username']; if ($user) { if ($_POST['submit']) { $oldpasswords = md5($_POST['oldpassword']); $newpasswords = md5($_POST['newpassword']); $repeatnewpasswords = md5($_POST['repeatnewpassword']); $connect =...
  3. N

    PHP when i try to update users password, the password is deleted, so the user has

    no password, reset pasword? <?php session_start(); $user = $_SESSION['username']; if ($user) { if ($_POST['submit']) { $oldpasswords = md5($_POST['oldpassword']); $newpasswords = md5($_POST['newpassword']); $repeatnewpasswords = md5($_POST['repeatnewpassword']); $connect = mysql_connect...
Back
Top