No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Try moving it into the content div and then set the following CSS to place it in the bottom [CODE] .navigation { position: absolute; bottom: 10px; left: 20px; } [/CODE]
Use a hidden form element in the login form which has a its value set using php: [CODE]<input name="login[url]" type="hidden" value="<?php echo URL; ?>" />[/CODE] And then use the following on successful login: [CODE] define('SITE', "http://".$_SERVER['SERVER_NAME']); if (!empty($_SERVER["QUERY_STRING"])) { // Check for query strings define('URL', SITE.$_SERVER['PHP_SELF']."?".$_SERVER['QUERY_STRING']); } else { define('URL', …
Try [URL="http://net.tutsplus.com/articles/news/how-to-build-a-login-system-for-a-simple-website/"]http://net.tutsplus.com/articles/news/how-to-build-a-login-system-for-a-simple-website/[/URL] this is a good article for developing a login system.
The End.
Skelly1983