Answers for "redirect to another page in in another folder php"

PHP
0

php redirect to another page

<?php header("Location: $url"); ?>
Posted by: Guest on November-20-2021
0

php redirect to another page

if (/*Condition to redirect*/){
  //You need to redirect
  header("Location: http://www.yourwebsite.com/user.php"); /* Redirect browser */
  exit();
 }
else{
  // do some
}
Posted by: Guest on December-03-2021

Code answers related to "redirect to another page in in another folder php"

Browse Popular Code Answers by Language