Sorry - here's the HTML source. Don't laugh :)
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"><html>
<head>
<style type="text/css">
<!--
body {margin:50;}
-->
</style>
<title>ai-em.net | image gallery</title>
<link rel="stylesheet" href="style.css" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000" link="#666666" vlink="#666666"
alink="#000000">
<p>
<table width="100%" border="0" cellspacing="0" cellpadding="6">
<tr bgcolor="#000000">
<td> <font color="#FFFFFF" size="+2">Image Gallery</font> </td>
</tr>
<tr bgcolor="#fafafa">
<td><font size="-1"><b>Series 1</b> - blah and blah and blah
</font><font size="-1"><a href="ig.php?view1=true">View
Thumbnails</a> --- <a href="ig.php?view1=false">Close
Thumbnails</a></font> </td>
</tr>
<?php
if (isset($view1)):
if ($view1 = true):
print("<tr bgcolor=\"#ffffff\">\n<td>Hello World! (thumbnails go
here)</td></tr>");
setcookie ("view1", "true");
endif;
if ($view1 = false):
setcookie ("view1", "false");
endif;
endif;
?>
<tr bgcolor="#FFFFFF">
<td><font size="-1"><b>Series 2</b> - blah blah again</font></td>
</tr>
<tr bgcolor="fafafa">
<td><font size="-1"><b>Series 3 </b> - blah blah again
(again)</font></td>
</tr>
</table>
</body>
</html>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php