Salve a tutti, sto usando un codice php che esegue un reindirizzamento in base al browser utilizzato...
Codice PHP:
<?php
if (eregi('Firefox/([0-9].[0-9]{1,2})',$_SERVER['HTTP_USER_AGENT']))
{
header('Location: http://'); #Firefox
}
elseif (eregi('Chrome/([0-9].[0-9]{1,2})', $_SERVER['HTTP_USER_AGENT']))
{
header('Location: http://'); #Chrome
}
?>
Ma vorrei aggiungere, oltre a firefox e chrome, il browser safari, ma non come richiamarlo nell'elseif.
ho provato ad aggiungere :
Codice PHP:
elseif (eregi('Safari/([0-9].[0-9]{1,2})', $_SERVER['HTTP_USER_AGENT']))
{
header('Location: http://');
}
ma non funziona :(
Grazie in anticipo.