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
Re: you should raise the last </div> before <div id="footer"></div>. such as below: [code=php] <html> <head> <title>Test Page - Elijah Ministries</title> <link rel="stylesheet" type="text/css" href="/projects/elijah/elijah.css" /> </head> <body> <!--carries the whole Website --> <div id="main"> <!--Header --> <div id="header"> <?php $paths = getcwd(); include("$paths/include/inc.header.php"); ?> </div> <!--Navigation bar --> <div id="nav"> … | |
Re: what's your mean? you need to know a little about apache web server, and knowing php & mysql and if you want to work advanced, should learn perl , cgi along with linux. | |
Re: you should type your code almost such this: [code=java]String userID=request.getAttribute("username"); HttpSession session=request.getSession(true); session.setAttribute("username",userID);[/code] when you want to access it in some other jsp/servlet page type this: -- another page --- [code=java]HttpSession session=request.getSession(); String username= (String) session.getAttribute("username");[/code] --------------------------------------------------------------------------- you can not use request.getAttribute("username") in another page if you haven't used any … |
The End.