hi folks,
I'm the designer of tarmhost.com using whmcs and I made a small code snippet. If you are using whmcs like me. And want to have the announcements on your html site (outside of whmcs) you can use this small code and style it however you wany. Peace!
<?php
$baglan = mysql_connect("yourhost/generaly localhost","your db user","users pass")||die("Mysql connection error");
@mysql_select_db("your db name")||die("mysql connection error");
$tablo="SELECT * FROM tblannouncements";
$a=mysql_query($tablo);
$maxeksibes=mysql_num_rows($a);
$sonuc = mysql_query(" SELECT * FROM `tblannouncements` ORDER BY `tblannouncements` . `date` DESC LIMIT 0, 5 ");
while ($satir = mysql_fetch_row($sonuc))
{
if ( $satir[4]==on )
echo
'
<h1 class="news_heading">'.$satir[2].'</h1>
<p class="news_front">'.$satir[3].' /http://www.tarmhost.com/base/announcements.php"] devamı >> </p>
';
}
?>