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
Re: php sessions and css file? [message #173670 is a reply to message #173664] Tue, 26 April 2011 19:53 Go to previous messageGo to previous message
Alex Pavluck is currently offline  Alex Pavluck
Messages: 5
Registered: April 2011
Karma:
Junior Member
I found the answer by using Google as usual. The answer is a simple
absolute vs relative path for the css file for those who care. Here
is the site: http://www.tek-tips.com/viewthread.cfm?qid=1448368&page=67

Special thanks to the people who made sarcastic rather helpful posts.
Next time don't post on questions if you aren't going to be helpful -
it isn't as impressive or cool as you think.





On Apr 26, 10:46 am, Alex Pavluck <apavl...@gmail.com> wrote:
> 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:31:08 GMT 2024

Total time taken to generate the page: 0.05451 seconds