Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~524 People Reached
Interests
Web Developing (frontend and backend) PHP, MySQL, CSS, HTML, Javascript
PC Specs
Apple Mac Book Pro 2011 OS/X Lion
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Q8iEnG

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]

Member Avatar for Q8iEnG
0
212
Member Avatar for in4sys

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', …

Member Avatar for Skelly1983
0
204
Member Avatar for xabi

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.

Member Avatar for Skelly1983
0
108

The End.