Code: Select all
<?php
if ( ! $password == 'in')
{ header("location:cv.html") ; exit();}
else {
header("Location: index.htm"); }
?>does not seem to work, it just goes back to index.htm
can anyone help plz
Moderator: General Moderators
Code: Select all
<?php
if ( ! $password == 'in')
{ header("location:cv.html") ; exit();}
else {
header("Location: index.htm"); }
?>Code: Select all
<?php
if ( ! $password == 'in')
?>Code: Select all
<?php
if ($password == 'in')
?>