header() function in php in hindi

header() function in php:
इस function का use program का control एक webpage से किसी दुसरे webpage पर Transfer करने के लिए किया जाता है header function का use कर के एक webpage से किसी दुसरे webpage पर Redirect किया जाता है

http://engineersworld.in/


syntax :
header(“Location:pagename”);

Example :

<html>
<head>
<title>Header Function</title>
</head>
<body>
<h2>Current Page</h2>
<form action="" method="post">
<input type="submit" name="sub" value="Next Page" />
</form>
<?php
if(isset($_POST['sub']))
{
header("Location:p1.php");
}
?>
</body>
</html>

Comments