42 lines
1.5 KiB
PHP
42 lines
1.5 KiB
PHP
|
<? /*
|
||
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
||
|
|
||
|
This file is part of CAcert.
|
||
|
|
||
|
CAcert has been released under the CAcert Source License
|
||
|
which can be found included with these source files or can
|
||
|
be downloaded from the internet from the following address:
|
||
|
http://www.cacert.org/src-lic.php
|
||
|
|
||
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||
|
PARTICULAR PURPOSE. See the License for more details.
|
||
|
*/ ?>
|
||
|
<h3><?=_("Introduction")?></h3>
|
||
|
|
||
|
<p><?=_("It's been a long time coming, but the wait was worthwhile, finally you are able to get security at the right price... Free!")?></p>
|
||
|
|
||
|
<p><?=_("For years we've all been charged high amounts of money to pay for security that doesn't and shouldn't cost the earth.")?></p>
|
||
|
|
||
|
<p><?=_("The primary goals are:")?>
|
||
|
<ul>
|
||
|
<li><?=_("Inclusion into mainstream browsers!")?></li>
|
||
|
<li><?=_("To provide a trust mechanism to go with the security aspects of encryption.")?></li>
|
||
|
</ul>
|
||
|
</p>
|
||
|
<br><br>
|
||
|
<h3><?=_("Latest News")?></h3>
|
||
|
|
||
|
<?
|
||
|
$query = "select *, UNIX_TIMESTAMP(`when`) as `TS` from news order by `when` desc limit 2";
|
||
|
$res = mysql_query($query);
|
||
|
while($row = mysql_fetch_assoc($res))
|
||
|
{
|
||
|
echo "<p><b>".date("Y-m-d", $row['TS'])."</b> - ".$row['short']."</p>\n";
|
||
|
if($row['story'] != "")
|
||
|
echo "<p>[ <a href='news.php?id=".$row['id']."'>Full Story</a> ]</p>\n";
|
||
|
}
|
||
|
if(mysql_num_rows(mysql_query("select * from `news`")) > 2)
|
||
|
echo "<p>[ <a href='news.php'>More News Items</a> ]</p>";
|
||
|
?>
|