if i type it in the link that is.
i get a 404 eror if i link to the index.php file i get this
<php>get('path'));
$startheading=($Config->get('startheading'));
if($startheading == 'foldername'){
$mytitle = $path;
} else {
$mytitle = $startheading;
}
$bgcol=($Config->get('bgcol'));
if (isset($_GET['bgcol'])) $bgcol=$_GET['bgcol'];
if (!isset($bgcol)) $bgcol='FFFFFF';
$textcol=($Config->get('textcol'));
$vars=$Config->listKeys();
$varstr = '';
?>
<DOCTYPE>
<html>
<head>
<title><mytitle></title>
<meta>
<script></script>
<script></script>
<style>
<!--
body, html, div {
height: 100%;
overflow: hidden;
}
body {
background-color: #<bgcol>;
margin: 0px;
padding: 0px;
}
-->
</style>
</head>
<body>
<div id="slideshow">
www.photo.gallery slideshow module
</div>
<script>
var so = new SWFObject("slideshow.swf", "slideshow", "100%", "100%", "7", "#<bgcol>");
so.addVariable("globalpath", "<globalpath>");
so.addVariable("textcol", "<textcol>");
so.addVariable("configfile", "<config>");
<php>
so.write("slideshow");
</script>
</body>
</html>