Este Script se llama Get Firefox.. mmm... su versión es la 2.0
Comprueba si el usuario esta utilizando Microsoft Internet Explorer
y le pone una condicional, si lo usa le advierte de la inseguridad de "ese programa" y si ha oido hablar de Mozilla Firefox, Invitandolo despues a entrar a su web.
En caso de que no lo use le pregunta si lo conoce, y le invita a entrar en su pagina web.
De lo mejorcito para los que queremos una forma distinta de atacar al gigante o de distrubuir este exelente navegador de codigo abierto.
getfirefox.php
Código PHP:
<?php
///////////////////////////////////////////////////
/* Get Firefox 2.0 */
/* Por Alexis Carrasco Muñoz */
/* Este archivo deberá ser incluido en la página */
/* Bajo licencia GPL */
/* Prohibido el ánimo de lucro */
///////////////////////////////////////////////////
if (eregi ("MSIE", $HTTP_USER_AGENT)) {
echo ("<table width='40%' border='0'>
<tr>
<td colspan='2'><div align='center'>Veo que utilizas<em> Microsoft Internet Explorer</em></div></td>
</tr>
<tr>
<td><div align='center'>¿Sabes de la inseguridad de este navegador?</div></td>
<td><span class='prod'><a href='http://www.mozilla-europe.org/es/products/firefox/'><img src='http://www.mozilla-europe.org/es/product-firefox.png' alt='Mozilla Firefox' width='60' height='60' border='0'></a></span></td>
</tr>
<tr>
<td colspan='2'><div align='center'>Nosotros utilizamos <a href='http://www.mozilla-europe.org/es/products/firefox/'><strong>Mozilla Firefox</strong></a> ¡Pruébalo!</div></td>
</tr>
</table>\n");
} else {
echo ("<table width='50%' border='0'>
<tr>
<td> <p align='center'>No estás utilizando<em> Microsoft Internet Explorer</em></p></td>
<td rowspan='4'><div align='center'><span class='prod'><a href='http://www.mozilla-europe.org/es/products/firefox/'><img src='http://www.mozilla-europe.org/es/product-firefox.png' alt='Mozilla Firefox' width='60' height='60' border='0'></a></span></div></td>
</tr>
<tr>
<td><div align='center'>Pero...</div></td>
</tr>
<tr>
<td><div align='center'>¿Has oido hablar de <a href='http://www.mozilla-europe.org/es/products/firefox/'><strong>Mozilla Firefox</strong></a>?</div></td>
</tr>
<tr>
<td><div align='center'>¡Pruébalo!</div></td>
</tr>
</table>\n" );
}
?>