i'm making a site that uses sessions and it's working good, but i have thought of something that is bodering me.
the whole site is in index.php and the scripts are loaded to it, this is the code i have in index.php:
<?php
session_start();
session_register("login_status");
session_register("login_user");
?>
is this enough for tracking users? i meen, will this identify which user is which?
isn't there a chance that someone who enters the site get's somebody else login?
this is for a online e-commerce site and i'm concerned that this is not being done right?
thanks in advance.