Blame | Last modification | View Log | Download
<?php/*************************Coppermine Photo Gallery************************Copyright (c) 2003-2005 Coppermine Dev Teamv1.1 originaly written by Gregory DEMARThis program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.********************************************Coppermine version: 1.3.3$Source: /cvsroot/coppermine/stable/faq.php,v $$Revision: 1.4 $$Author: gaugau $$Date: 2005/04/19 03:17:10 $**********************************************/define('IN_COPPERMINE', true);define('FAQ_PHP', true);global $CONFIG;require('include/init.inc.php');// build the ouput$faqHeading = '';$faqContent = '';$anchorName = '';foreach($lang_faq_data as $element) {if ((is_array($element))) {if ($CONFIG[$element[2]] == $element[3]) {$anchorName = createAnchorName($element[0]);$faqHeading .= '<ul style="margin-top:0px;margin-bottom:0px"><li><a href="#'.$anchorName.'">'.$element[0].'</a></li></ul>';$faqContent .= '<tr><td class="tablef"><i>'.$lang_faq_php['question'].'</i><a name="'.$anchorName.'"></a><b>'.$element[0].'</b></td></tr><tr><td class="tableb"><i>'.$lang_faq_php['answer'].'</i>'.$element[1].'<br /> <br /> <br /></td></tr>';}}else {$anchorName = createAnchorName($element);$faqHeading .= '<h2><a href="#'.$anchorName.'">'.$element.'</a></h2>';$faqContent .= '<tr><td class="tableh1"><a name="'.$anchorName.'"></a><h2>'.$element.'</h2></td></tr>';}}$faqHeading .= '';//print $faqHeading;//print '<hr>';//print $faqContent;pageheader($lang_faq_php['faq']);print '<h1>'.$lang_faq_php['faq'].'</h1>';starttable('100%',$lang_faq_php['toc']);print '<tr>';print '<td class="tableb">';print $faqHeading;print '</td>';print '</tr>';endtable();print '<br /> <br />';starttable('100%');print $faqContent;endtable();print '<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />';pagefooter();ob_end_flush();function createAnchorName($anchor){$anchor = trim(str_replace(' ','_',str_replace('?','',$anchor)));return $anchor;}?>