+ 1

How to redrict to any other page in php

20th Apr 2018, 5:29 PM
Misbakh Ahmed
Misbakh Ahmed - avatar
3 Answers
+ 1
thanks a alot
21st Apr 2018, 2:50 AM
Misbakh Ahmed
Misbakh Ahmed - avatar
+ 4
set location header header("location: index.php");
20th Apr 2018, 5:33 PM
Toni Isotalo
Toni Isotalo - avatar
+ 2
function redirect($url, $statusCode = 303) { header('Location: ' . $url, true, $statusCode); die(); } redirect("sample.html");
20th Apr 2018, 7:17 PM
Shaik Ruha Tabasum
Shaik Ruha Tabasum - avatar