gaim/www

(21:23:17) SimGuy: LSchiere: why is it that gaim-ssl.txt is not a web page?
(21:23:36) LSchiere: SimGuy: because i don't know how to use the includes
and engines ChipX86|Coding wrote
(21:23:47) LSchiere: and so i just committed the file nosnilmot gave me
(21:24:10) nosnilmot: SimGuy: http://gaim.nosnilmot.com/faq-ssl.php
(21:24:21) nosnilmot: LSchiere: do you want that?
(21:24:40) nosnilmot: SimGuy: because I was a lazy sod originally
(21:25:01) SimGuy: nosnilmot: haha, that's exactly the sort of thing i
meant
(21:25:12) ***LSchiere blinks
(21:25:18) LSchiere: nosnilmot: yes i would
(21:26:18) nosnilmot: LSchiere:
(21:26:45) nosnilmot: LSchiere: it fixinates a couple of too for goodness


Christian, if this isn't correct, just revert it and we'll have nosnilmot
fix it ;-)
<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>