Answers for "redirecting to http web pages in php with parameter"

PHP
1

php redirect to url

header("Location: http://example.com/myOtherPage.php");
die();
Posted by: Guest on July-27-2020
1

php header redirect with parameters

$id_car = '2';
Header("Location: formUpdateCar.php?car=".$id_car);
Posted by: Guest on October-21-2020

Code answers related to "redirecting to http web pages in php with parameter"

Browse Popular Code Answers by Language