View Single Post
ישן 01-10-06, 11:59   # 10
Elad-A
הוסטסניון
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 1,987

Elad-A לא מחובר  

עובד מצוין:

PHP קוד:

<?

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

        function 
viewcats($id,$name,$content
    {
            global 
$lang;
            echo 
"
            <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;
            echo 
"
           <table width=50%><th>{$lang['thereare']} {$num} {$lang['categories']}</th></table>
            "
;
        }
}
?>
  Reply With Quote