FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » php sessions and css file?
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
php sessions and css file? [message #173664] Tue, 26 April 2011 14:46 Go to previous message
Alex Pavluck is currently offline  Alex Pavluck
Messages: 5
Registered: April 2011
Karma:
Junior Member
Is it possible to use a css file if you are using php sessions to
login?

Here is my code:

valid.php
.....
if($count==1){

$_SESSION['loggedin'] = 1;// Set session variable
header("Location: protect.php");//header must be the first printed
line!

protect.php
<?php
session_start();
// Call this function so your page
// can access session variables
if($_SESSION['loggedin'] != 1) {
// If the 'loggedin' session variable
// is not equal to 1, then you must
// not let the user see the page.
// So, we'll redirect them to the
// login page (login.php).
header("Location: index.html");
exit;
}
?>


<html>
<head>
<title>DOLF Project Log In</title>
<link rel="stylesheet" type="text/css" href="layout.css"
media="screen" />

</head>
<body>
.....
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Adding a CDATA section
Next Topic: hai
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Nov 26 15:46:25 GMT 2024

Total time taken to generate the page: 0.04914 seconds