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
~352 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Stefano Mtangoo

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"> …

Member Avatar for Stefano Mtangoo
0
119
Member Avatar for nzaman

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.

Member Avatar for cwarn23
0
91
Member Avatar for jeetudaljit

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 …

Member Avatar for pm4
0
142

The End.