gaim/www

(21:38:32) datallah: nosnilmot: why is the Non-root including
mozilla-{nss,nspr} section all a link?
(21:39:09) nosnilmot: datallah: are you using IE or something?
(21:39:11) datallah: yeah
(21:39:17) nosnilmot: datallah: damn you
(21:40:41) datallah: nosnilmot: its missing a >
(21:40:49) nosnilmot: datallah: I know... one mo....
(21:42:20) nosnilmot: LSchiere: sorry :
http://www.nosnilmot.com/patches/gaim-shutup-datallah.patch
(21:43:35) datallah: nosnilmot: much better
(21:44:42) datallah: nosnilmot: btw... i think it looks very nice
(21:44:51) nosnilmot: datallah: why thank you
<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>