Jump to content

if username


ecabrera

Recommended Posts

hey how dose if username work

 

<?php $title = "Add Video";
?>
<?php require("styles/top.php"); ?>

<?php

if ($username){



}
else
	echo "<h2><font color='red'>You must be logged view this Part.</font></h2>";

?>

<?php require("styles/bottom.php"); ?>

 

 

if i put things like this and add welcome to this it wont work the whole page will turn white when i refresh why is that

 

<?php $title = "Add Video";
?>
<?php require("styles/top.php"); ?>

<?php

if ($username){

<h2>Welcome To this </h>

}
else
	echo "<h2><font color='red'>You must be logged view this Part.</font></h2>";

?>

<?php require("styles/bottom.php"); ?>

Link to comment
https://forums.phpfreaks.com/topic/244176-if-username/
Share on other sites

Hi There,

 

this is a poor approach to validate a user's session, please see below for a proper and more secure approach.

 

<?php

session_start();

if (!isset($_SESSION['username']))
{
    session_regenerate_id();
    $_SESSION['username'] = false;
}elseif((isset($_SESSION['username']) && ($_SESSION['username'] == "")){

  $_SESSION['username'] = false;

}

?>

Link to comment
https://forums.phpfreaks.com/topic/244176-if-username/#findComment-1253984
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.