puoi modificare il link nelle due pagine
pagina1.php
pagina2.phpCodice PHP:
[url="countdown.php?id=1"] ... [/url]
ed aggiungere il seguente codice in countdown.phpCodice PHP:
[url="countdown.php?id=2"] ... [/url]
Codice PHP:
<?php
$id = $_GET['id'];
if ($id == 1)
$url = 'http://.../ok1.php'
else if ($id == 2)
$url = 'http://.../ok2.php'
else
$url = 'http://.../default.php'
// http_redirect() / header() / HTML
?>