- Desde
- 28 Nov 2013
- Mensajes
- 3
Hola. Estoy intentando que, al ejecutar la función IF, PHP me redireccione a la dirección correspondiente, dentro de la cual quiero incluir una variable que tendrá el mismo valor en todas las líneas (es decir, que, al redireccionar, sustituya "$variable" por "valor"):
<body><?php
$secondofyear=date("U");
$variable=valor;
if ($secondofyear<1385528400) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/1/$variable.html" />';
elseif ($secondofyear<1385614800) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/2/$variable.html" />';
elseif ($secondofyear<1385701200) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/3/$variable.html" />';
elseif ($secondofyear<1385787600) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/4/$variable.html" />';
elseif ($secondofyear<1385874000) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/5/$variable.html" />';
elseif ($secondofyear<1385960400) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/6/$variable.html" />';
?>
¿Se puede hacer? Gracias.
<body><?php
$secondofyear=date("U");
$variable=valor;
if ($secondofyear<1385528400) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/1/$variable.html" />';
elseif ($secondofyear<1385614800) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/2/$variable.html" />';
elseif ($secondofyear<1385701200) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/3/$variable.html" />';
elseif ($secondofyear<1385787600) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/4/$variable.html" />';
elseif ($secondofyear<1385874000) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/5/$variable.html" />';
elseif ($secondofyear<1385960400) echo '<meta http-equiv="refresh" content="0; URL=http://www.misitioweb.es/6/$variable.html" />';
?>
¿Se puede hacer? Gracias.