Week 7 : My Homestay Login Password
- Create a search function at admin main page.
 - Login password using md5 encryption function which human not readable to protect the system.
 - Who approved the member becomes an owner.
 - Updated the latest status which is promotion or announcement.
 - Increase the font size of the page wills more prefects.
 
- Login validation error.
 - Create the password with md5 encryption function.
 - Add random number in front of picture.
 - Split the user and owner if not will mess up the database.
 - Homestay list can list can open a new column for action for delete or edit function.
 - When users change their password must force them the logout and login with new password because we using session.
 - Upload multiple pictures with Jquery.
 
$member_signup_pass = md5(trim($_POST["member_signup_pass"]));
$member_signup_Conpass = md5(trim($_POST["member_signup_Conpass"]));

0 comments