Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
if (strpos($HTTP_USER_AGENT, "Firefox")) {
...
}
echo $_SERVER['HTTP_USER_AGENT'];
if (strpos($HTTP_USER_AGENT, "Nokia6630")) {
echo "<hr>Ich bin ein Nokia 6630";
} else {
echo "<hr>BAD";
}
if (substr_count($HTTP_USER_AGENT, "Nokia6630")) {
echo "<hr>Ich bin ein Nokia 6630";
} else {
echo "<hr>BAD";
}
if (substr_count($HTTP_USER_AGENT, "Nokia")) {
echo "<hr>Ich bin ein Nokia 6630";
} else {
echo "<hr>BAD";
}