Te quedaría asi:
Código PHP:
<?php
switch ($variable)
{
case"1":
header("location: pagina1.php?variable=".$variable);
exit;
case"2":
header("location: pagina2.php?variable=".$variable");
exit;
case"3":
header("location: pagina3.php?variable=".$variable");
exit;
}
?>