redirecting to http web pages in php with parameter code example
Example 1: php redirect to url
header("Location: http://example.com/myOtherPage.php");
die();
Example 2: php header redirect with parameters
$id_car = '2';
Header("Location: formUpdateCar.php?car=".$id_car);