View Single Post
ישן 05-10-06, 16:21   # 16
-VladK-
הוסטסניון
 
-VladK-'s Avatar
 
מיני פרופיל
תאריך הצטרפות: Apr 2006
גיל: 34
הודעות: 2,182

-VladK- לא מחובר  

תהנה...

PHP קוד:
<?

class skin
{
        function 
offsystem($why
    {
            global 
$lang;
            return 
"
            <table width=75% class=border><th>{$lang['systemoff']}</th>
            <tr><td>{$why}</td></tr></table>
            "
;
        }

        function 
viewcats($id,$name,$content
    {
            global 
$lang;
            return 
"
            <table width=100% class=border><th><a href=viewnews.php?id={$id}>{$name}</a></th>
            <tr><td height=75 valign=top>{$content}</td></tr></table><br>
            "
;
        }

        function 
num($num
    {
    global 
$lang;
            return 
"
           <table width=50%><th>{$lang['thereare']} {$num} {$lang['categories']}</th></table>
            "
;
        }
}
?>
  Reply With Quote