dustatlantis
Honorary Poster
Is any way to help me how to program this one? Hard to edit contexts one by one.
Location header:<?php
// program.php
$id = $_GET['id'];
switch ($id) {
case 1:
$your_url = 'http://localhost/link';
break;
case 2:
$your_url = 'http://localhost/blog';
break;
default:
$your_url = 'http://' . $_SERVER['HTTP_HOST'] . '/program.php';
break;
}
header('Location: ' . $your_url);
exit;
?>
Thank you po!Simply useLocationheader:
Code:<?php // program.php $id = $_GET['id']; switch ($id) { case 1: $your_url = 'http://localhost/link'; break; case 2: $your_url = 'http://localhost/blog'; break; default: $your_url = 'http://' . $_SERVER['HTTP_HOST'] . '/program.php'; break; } header('Location: ' . $your_url); exit; ?>