Posts tagged ‘password’

Create Script to Running Application as Administrator using VBScript

When I want to run a particular Windows application on Guest account on Windows XP Professional, I got error that saying access denied. So it’s clear that I need to run that application using Administrator account. I don’t want input Administator password every time I want to run it. How to make it auto input the Administrator password? We have to make a VBScript to solve this problem. Continue reading ‘Create Script to Running Application as Administrator using VBScript’ »

Create a Simple ‘Forget Password’ Feature using PHP

One of very common feature on a community or social network website is ‘forget password’ feature. What the hell is that? Well, it’s seems this feature is not important, but actually it will be useful if the member of the site was forgot their password. How to create a simple but quite good ‘forget password’ feature? As usual, we will need a scenario to reproduce our problem. But before we talk about the scenario, we will cover about our ‘forget password’ mechanism first. Continue reading ‘Create a Simple ‘Forget Password’ Feature using PHP’ »

Creating Simple Login System in PHP

We will cover about creating simple login mechanism using PHP and MySQL. Login usually used to seperate the public access page and secured page. Sample of public page is for example like public home page, public profile page, about page, contact page etc. Secured page for example like user profile settings page, user accounts page etc. The point is everything that only specific user can view is considered secured page.The page that displayed after the login screen is secured page. Continue reading ‘Creating Simple Login System in PHP’ »