6 |
kaklik |
1 |
<?php
|
|
|
2 |
include "config.php";
|
|
|
3 |
include "incl/header.inc";
|
|
|
4 |
?>
|
|
|
5 |
</head><body class="y">
|
|
|
6 |
<table align="center" width="120" class="t" cellpadding="0" cellspacing="0"><tr><td>
|
|
|
7 |
<table width="100%" cellpadding="0" cellspacing="0"><tr><td class="f">
|
|
|
8 |
<table width="100%" cellpadding="8" cellspacing="1">
|
|
|
9 |
<tr><td class="c"><?php print $lang[13];?></td></tr>
|
|
|
10 |
<tr><td class="a" align="center">
|
|
|
11 |
<?php
|
|
|
12 |
for($i=0;$i<count($smilies);$i++){
|
|
|
13 |
if(isset($smilies[$i])&&strlen($smilies[$i])>9){
|
|
|
14 |
$row=explode('|',$smilies[$i]);
|
|
|
15 |
|
|
|
16 |
print "<a href=\"info.php?why=link\" title=\"$row[4]\" onclick=\"return add_smiley(' $row[0] ')\">";
|
|
|
17 |
print "<img src=\"$skin_dir/$row[1]\" width=\"$row[2]\" height=\"$row[3]\" border=\"0\" hspace=\"2\" vspace=\"2\" alt=\"$row[4]\" /></a> ";
|
|
|
18 |
}}
|
|
|
19 |
|
|
|
20 |
?></td></tr></table></td></tr></table></td></tr></table></body></html>
|