gaim/www

(08:51:27) Faceprint: i think maybe we should update gdb.php to say "bt
full" instead of just "bt"
(08:51:32) Luke: okay
(08:51:35) Luke: that's easily done
(08:51:40) Faceprint: you agree?
(08:51:51) Luke: I'd never heard of bt full until last week
(08:51:54) Faceprint: that way we get the more useful backtrace the first
time
(08:52:12) Luke: *nods*
<html>
<body>
<table>
<?php
$faq = file("./faq.txt");
$temp='';
$qa=0;
for($i=0; $i < sizeof($faq); $i=$i+2)
{
if($qa % 2 == 0) // is even
{
?>
<tr>
<td valign="top"><img src="/images/q.png" width="20" height="32" border="0" alt="Q." /></td>
<td valign="top"><br /><font face="Verdana, Tahoma, Arial, Helvetica" size="-1">
<?php
$temp = substr($faq[$i],3);
print($temp);
?>
</font></td>
</tr>
<?php
}
if(!($qa % 2 == 0)) //is odd
{
?>
<tr>
<td valign="top"><img src="/images/a.png" width="20" height="27" border="0" alt="A." /></td>
<td valign="top"><br /><font face="Verdana, Tahoma, Arial, Helvetica" size="-1">
<?php
$temp = substr($faq[$i],3);
print($temp);
?>
</font></td>
</tr>
<?php
}
$qa++;
}
?>
</table>
</body>
</html>