How can we know that a session is started or not?
Answers were Sorted based on User's Feedback
Answer / deep
we'll have to set a session variable after starting a
session as shown below
--------------------------------------------------
<?php
session_start();
if(isset($_SESSION['views']))
$_SESSION['views']=$_SESSION['views']+1;
else
$_SESSION['views']=1;
echo "Views=". $_SESSION['views'];
?>
--------------------------------------------------
it will set as well as increment the session variable
or we may simply echo a value to check whether a session is
started or not.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / rahul
on head of the page we have to write
session_start();
statement.
| Is This Answer Correct ? | 3 Yes | 9 No |
Answer / kamlesh
we can check is_session_start() by this function.
| Is This Answer Correct ? | 3 Yes | 9 No |
What is the output of the ucwords function in this example?
What are the two most common ways to start and finish a php block of code?
Is php pass by reference or value?
How long is a php session valid?
Different between the var_dump() and print_r()?
what are the various PHP Script Optimization techniques?
1 Answers IBM, Krify Software Technologies, TCL,
Can we use session in mvc?
What function do we use to find length of string, and length of array?
Is salary fixed or variable cost?
what are the differents between 'action' and 'target' in form tag?
Declare a new variable in php equal to the number 3;
What is the difference between == and === in php?