What is the default session time in PHP and how can I
change it?

Answers were Sorted based on User's Feedback



What is the default session time in PHP and how can I change it?..

Answer / bharanikumar

@Ashutosh Kumar

create flag field in login table,
Write error counter, check when error counter greater than
3, then write update query and change the flag field value
to disable, while check the login check this filed, it
should not be disable value.

Is This Answer Correct ?    3 Yes 6 No

What is the default session time in PHP and how can I change it?..

Answer / kuldeep verma

it is true that by default time of session 140 sec. and we
can change in php.ini....
it is also depend on brower. when closing the brower then
session lost. session data will be deleted after session
timeout.if connection lost. And recreate the connection then
it session continue.......

Is This Answer Correct ?    17 Yes 28 No

What is the default session time in PHP and how can I change it?..

Answer / rakesh kumar nautiyal

<?php
session_start();

session_cache_expire(15);
$cache_expire = session_cache_expire();

if(!isset($_SESSION['password'])){
$msg = "Your session is expired.Please re enter the
password";
header("Location: index.php?msg=".$msg);
} else {
// remaining code to display the gallery
}
?>

Is This Answer Correct ?    44 Yes 63 No

Post New Answer

More PHP Interview Questions

Explain the difference between $var and $$var?

0 Answers  


Explain how we can get the number of elements in an array?

0 Answers  


When should you use a stored procedure?

0 Answers  


How to check a key exist in an array?

0 Answers  


How can you get the size of an image in PHP?

0 Answers  






How to apply Cake php ajax pagination?

1 Answers  


What is mysqli_real_escape_string?

0 Answers  


How can we increase execution time of a php script?

0 Answers  


What enctype is required for file uploads to work?

0 Answers  


What are the differences between public, private, protected, static, transient, final and volatile?

3 Answers  


how php works with oracle?

1 Answers  


How to pass variables by references?

0 Answers  


Categories