How do you set the browser timeout?
Answers were Sorted based on User's Feedback
Answer / suren
using the follwing function u can set the script timeout
set_time_limit(900);
timeout too 900 seconds or 15 minutes.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / shravya
for($i = 2000; $i < 2011; $i++) {
echo "<br>".$i, ': ', (date('L', strtotime("$i-01-
01")) ? 'Yes' : 'No'), '<br/>';
}
| Is This Answer Correct ? | 3 Yes | 2 No |
What is isset post?
What is the purpose of the following files having extensions: frm, myd, and myi? What these files contain?
How to send a cookie to the browser?
Is null check in php?
HOW we can use css
What is singleton design pattern in php?
What is the use of session and cookies in php?
class Database { public static $_instance; public static function getInstance() { if(!isset(self::$_instance)) self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME); print_r(self::$_instance); return self::$_instance; } } can any one explain "self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME);" this line
How do you use end in python?
How do you create an array in php?
How to find second highest salary
Tell me what is mean by an associative array?