Answers for "php redirect to another page with data"

PHP
1

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
0

php redirect to another page

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

Code answers related to "php redirect to another page with data"

Browse Popular Code Answers by Language