Files
cwsvJudo/homepage/redesign2018/markdownExperiment/backup/pagesMobile/amimobile.php
2018-06-30 11:20:39 +02:00

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>