< ?php header("Location: http://www.redirect.to.url.com/"); ?>
$id_car = '2';
Header("Location: formUpdateCar.php?car=".$id_car);
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>