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 |
what is the best function that can be used to connect to mysql database and in what cases that we can use below functions ? 1. mysql_connect() 2. mysql_pconnect() please give your answer with all pros and cons
What are php magic quotes?
Why php is also called as scripting language?
How to redirect a page in php?
Can I use php in visual studio?
What is super keyword in php?
Which cryptographic functions in php returns the longest hash value?
How to print \ in php. Only \ with out using . or *.
How variables are passed through arguments?
How to move uploaded files to permanent directory?
does current version of mysql (myisam) supports foreign keys ?
What is difference between session_unset and session_destroy?