List out different arguments in PHP header function?
Answers were Sorted based on User's Feedback
Answer / sivasankar.p
header —
Send a raw HTTP header
syntax-
void header ( string $string [, bool $replace [,
int $http_response_code ]] )
ex:
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment;
filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / rajesh bhujbal
Different arguments that we can pass in header() are:
1.Location:
2.HTTP/
3.Status:
4.WWW-Authenticate:
5.Content-type:
6.Content-Disposition:
7.Cache-Control:
8.Expires:
9.Pragma:
10.Expires:
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rakesh kumar nautiyal
<?php
if ((isset($gender)) && ($gender == 'female')) {
header("Location:
http://allinterview.com/form/secret.php");
exit;
}
?>
<html><head><title>the inclusive page</title></head>
<body>
<h3>welcome!</h3>
Even men welcome to this page!
</body></html>
| Is This Answer Correct ? | 5 Yes | 9 No |
Tell me how comparison of objects is done in php5?
What is isset in php form?
Why does php start with variables?
Explain how is it possible to set an infinite execution time for php script?
what is the maximum size of databasi in mysql?
List some features of php that are deprecated in php
What are some new features introduced in php7?
How to remove white spaces from the beginning and/or the end of a string in php?
What are differences between PECL and PEAR?
Explain type casting and type juggling.
What is the difference between the functions UNLINK and UNSET?
How can we encrypt the username and password using PHP?
3 Answers Rushmore Consultancy,