- Home
- Categorie
- Coding e Sistemistica
- PHP
- Browser
-
[..]
Scusa ma di php ne so ben poco dovrebbe essere cosi, tu dici, ma per aggiungere gli altri browser
Cosa devo mettere sempre?
[PHP]
elseif(strstr($browser, 'Firefox') == true)
{
header('Location: pagina3.html');
}[/PHP]
Tipo?
XD
-
Ciao Maxin
Si.
-
L'ho fatto ma non funziona.
L'ho messo su una pagina qualsiasi ma se uso uno o l'altro non mi funziona.
XD
-
Ciao maxin:
Prova con questo cosa succede:
[php]
<?
$browser = $_SERVER['HTTP_USER_AGENT'];if(strstr($browser, 'MSIE') == true)
{
header('Location: pagina.html');
exit;
}
elseif(strstr($browser, 'Firefox') == true)
{
header('Location: pagina2.html');
exit;
}
else
{
header('Location: browser-sconosciuto.html');
exit;
}
?>
[/php]
-
^^
Problem
Se lo provo con firefox funziona ma per Ie no
XD
-
Ciao maxin,
Con IE cosa succede?
-
Se metto nella pagina dedicata a firefox e lo apro con Ie non funziona
XD
-
Ciao maxin,
Non funziona è troppo generico.
Ti fa un redirect, ti mostra una pagina bianca, ti mostra un errore, ecc?Non sono mica vegente.
-
xD
Ho creato una pagina per firefox
Se la apro con Ie
Non mi modifica la pagina ma rimane invariata...
-
Se stai usando
:
[php]
<?
$browser = $_SERVER['HTTP_USER_AGENT'];if(strstr($browser, 'MSIE') == true)
{
header('Location: pagina.html');
exit;
}
elseif(strstr($browser, 'Firefox') == true)
{
header('Location: pagina2.html');
exit;
}
else
{
header('Location: browser-sconosciuto.html');
exit;
}
?>
[/php]Il redirect lo deve per forza.