2011-04-17 19:38:35 +04:00
|
|
|
|
|
|
|
<h1>Questions and Answers</h1>
|
|
|
|
|
2011-04-17 02:53:10 +04:00
|
|
|
<table cellspacing="0">
|
|
|
|
<tbody>
|
|
|
|
<?php foreach($_["kbe"] as $kb): ?>
|
|
|
|
<tr>
|
2011-04-17 19:38:35 +04:00
|
|
|
<td width="1"><?php if($kb["preview1"] <> "") { echo('<img class="preview" border="0" src="'.$kb["preview1"].'" />'); } ?> </a></td>
|
|
|
|
<td class="name"><?php echo $kb["name"]; ?><br /><?php echo('<span class="type">'.$kb['description'].'</span>'); ?><br />
|
|
|
|
<?php if($kb['answer']<>'') echo('<br /><span class="type"><b>Answer:</b></span><br /><span class="type">'.$kb['answer'].'</span>');?>
|
|
|
|
</td>
|
2011-04-17 02:53:10 +04:00
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2011-04-17 19:38:35 +04:00
|
|
|
<span class="button"><a target="_blank" href="http://apps.owncloud.com/knowledgebase/editquestion.php?action=new">ASK A QUESTION</a></span>
|
|
|
|
|
|
|
|
|