Forum Moderators: coopster
if ($_COOKIE['mycookie'] == "register") {
echo "";
} elseif ($_COOKIE['mycookie'] != "register") {
md_login();
exit;
}
this is the summary of the protect.php file, i just want to know from the experts in this kind of issue if theres nothing wrong with this and is completly secure as long as i use the https protocol and the included functions of this software perform all the security required for a good login system or if on the other hand you think i should of try something else O_o.
I also want to integrate this login system with a shop online, so security is really important here, I need some tips about this if possible to help me work it out.
thanks in advance.