If you really want to use it. I'd say use a CSS file to make your margins to
0
------ save this as css.css -----------
Body {
margin:0;
}
img {
height:100%;
width:100%;
}
-------------------------------------
in the html file put this
<html>
<head>
<title>something</title>
<link rel="stylsheet" href="css.css" type="text/css">
</head>
<body>
<img src="whatever" alt="something">
</body>
</html>
have the user press F11 to make it fullscreen.
That is how I would do it. Use it if that would help out.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php