This is t test if it is possible to include the FlickrSpinnr using server side include (SSI).
Rational: Someone who wants to include the standalone version of FlickrSpinnr in an existing static HTML page, may not want to change the file type to *.php. The reason may be that the page is already linked to with its full name from inide or outside the domain it lives on.
Something like this?
<!--#include virtual="/labs/media/flash/3dcube/phpspinner.php" -->
NOP!
The iframe inclusion in this page is
<iframe src="iframespinner.php" frameborder="0" scrolling="no" height="350" width="350" align="left"/>
and this is the iframespinner.php
<?php include('cube.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>A Flickr Spinnr Experiment</title>
</head>
<body>
<?php cube(350,350); ?>
</body>
</html>