als ik met Windows 95 de volgende pagina bezoek, krijg ik de melding dat ik Windows 7 gebruik...
http://helogat.homeserver.com/webhosting/rex/whatos.php
whatos.php:
[js]<script type="text/javascript">
var os=navigator.oscpu;
if (os=="Windows NT 5.1")
{
window.location = "osselect.php?os=xp";
}
else if (os=="Windows NT 6.0")
{
window.location = "osselect.php?os=vista";
}
else if (os=="Windows NT 6.1")
{
window.location = "osselect.php?os=win7";
}
else if (os=="Windows NT 5.0")
{
window.location = "osselect.php?os=win7";
}
</script>
[/js]
osselect.php:
Hoe kan ik in Windows 95 zorgen dat er Windows 95 staat (en in 98 windows 98 en Me Me)
http://helogat.homeserver.com/webhosting/rex/whatos.php
whatos.php:
[js]<script type="text/javascript">
var os=navigator.oscpu;
if (os=="Windows NT 5.1")
{
window.location = "osselect.php?os=xp";
}
else if (os=="Windows NT 6.0")
{
window.location = "osselect.php?os=vista";
}
else if (os=="Windows NT 6.1")
{
window.location = "osselect.php?os=win7";
}
else if (os=="Windows NT 5.0")
{
window.location = "osselect.php?os=win7";
}
</script>
[/js]
osselect.php:
PHP:
<?php
$os=$_REQUEST["os"];
if ($os=="xp")
echo "You Use Windows XP.";
elseif ($os=="vista")
echo "You use Windows Vista";
elseif ($os="win7")
echo "You are using the newest os, Windows 7 :)";
elseif ($os="w2k")
echo "You've got an old computer. You Use Windows 2000";
?>
Hoe kan ik in Windows 95 zorgen dat er Windows 95 staat (en in 98 windows 98 en Me Me)