I would like to secure some of my files on my webpage (for exemple: only accessible by password).
Do I have to write a script or are there other solutions ?
yeah when I did that I just did it with a password, I just did it for fun though and it was a basic form. Read up on them and see which is the best, they are pretty much vary in what features they add in just look at different ones and add in what you want.
Comments
Photoshop Tutorials- Coming soon
Premium PHP Scripts- Coming soon
Haha i should really do some work so i can remove all the coming soon's
For example after someone hits a form this could be run:
<?php
$pass = "Your password";
if($password==$pass){
echo "Succesful login";
} else {
echo "Incorrect login info";
}
?>
The Royal Ram