i have a database holding subscribers with password information.
php password protection page is following this rule
subscribers sign in and password matched,
$ismember=1;
if ($ismember==1)
{
...
}
else
{
redirect to sign in page
}
but how can i protect pdf document? or doc document? or other downloadable files?
thanks
hui