Not Found

The requested page was not found on this server.


'); } //run down the fields and //load them into a convenient array $dataArray = array(); while($row = mysql_fetch_assoc($result)){ //there is a special template called redirect which just redirects the user if($row['template']=="1" && $row['fieldName']=="redirect") { $redirect = $row['content']; die(header('Location: '.$redirect)); } //get the template id while we're at it $templateID = $row['template']; //die('in loop '.$templateID ); //change images to full img tag if($row['fieldType']=="2") { //this is complicated by the possibility that it is a flash movie: $extension = substr($row['content'],strlen($row['content'])-3,strlen($row['content'])); if($extension!="swf"){ if($row['content']!="") $row['content'] = ''.$row['alt'].''; } else{ if($row['swf']=="") $row['content'] = ' '; else $row['content'] = stripslashes($row['swf']); } } if($row['fieldType']=="5") $row['content'] = includeModule($row['content']); if($row['fieldType']=="6" && $row['content']!=""){ $text = ($row['description']=="") ? $row['content'] : $row['description']; $row['content'] = 'click to download Click to download '.$text.''; } if($row['fieldType']=="7") $row['content'] = includeContent($row['content']); $dataArray[ $row['fieldName'] ] = $row['content']; } ?>