Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is the use of preg_match in php?

0 Answers  


Why echo is faster than print in php?

0 Answers  


What is a php session?

0 Answers  


How many escape sequences are recognized in single-quoted strings?

0 Answers  


What is a lambda function in php?

0 Answers  


What is php destruct?

0 Answers  


Write down the code for save an uploaded file in php.

0 Answers  


Why die is used in php?

0 Answers  


How to generate pdf file in php?

1 Answers  


What are the features and advantages of object-oriented programming?

5 Answers   HCL,


What is php7?

0 Answers  


How to make a file encrypt and decrypt?

4 Answers   3i Infotech,


Categories