Thread
:
help me improve my login script please
View Single Post
#
2
(
permalink
)
08-11-03, 07:06 AM
kickinhard007
Newbie Coder
Join Date: Aug 2003
Location: Manchester, UK
Posts: 65
Thanks: 0
Thanked 0 Times in 0 Posts
i wouldn't use...
if ($username == "") {
header ("Location: index.html");
}
if ($password == "") {
header ("Location: index.html");
}
do it another way, like...
if ($username == "" & $password =="") {
header ("Location: index.html");
}
kickinhard007
View Public Profile
Find all posts by kickinhard007