|
Is it bad coding practice to attach sessions on to the URL manually instead of using cookies to maintain the session and (if possible) userid throughout all links?
Like say you have Sessions already in use for the logged in member and print links adding in the session with userid.
ex:
<a href="../profiles.php?PHPSESSID=".session_id()."&userID=$fe tch->userid">see this member's profile</a>
|