12 lines
243 B
PHP
12 lines
243 B
PHP
<html>
|
|
<head>
|
|
<title>Testseite für mobile Platformen</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
include 'phplib/is_mobile.php';
|
|
if(is_mobile())echo "Mobile Plattform erkannt!";
|
|
else echo"Mobile Plattform nicht erkannt!"
|
|
?>
|
|
</body>
|
|
</html>
|