Benutzerinformationen überspringen
![]()
This post has been edited 2 times, last edit by "ESoES" (Oct 10th 2006, 12:09am)
Benutzerinformationen überspringen
Date of registration: Mar 5th 2006
Location: DÜNYANIN GÜNEÞE,AYA VE YILDIZLARA KARIÞTÐI YERDEN EÞÝ BENZERÝ OLMAYAN MUHTEÞEM GÜZELLÝKTEN...CENNETTEN
Occupation: MAKÝNE MÜHENDÝSÝ
![]()
Quoted
Orjinal Yazari ESoES
Bu stylin Supportunu ancak ben veririm baskasi veremez.
Supportumuzda cekildigi yerde !!!!!
Benutzerinformationen überspringen
Date of registration: Sep 21st 2000
Location: Tokat/TÜRKIYE Hamburg/ALMANYA
Occupation: WEBMASTER
Hobbies: Güzel olan her sey
Danksagungen: 14526
![]()
Quoted
Orjinal Yazari parisli54
Selam Ustalar
Bana EsElagantin Tamplatesin sadece index in icindeki kodlari yazarsaniz sevinirim.
Bir arkadasinEsElagant Templetesin index indeki sorunu gidermek icin yardimlarinizi bekliyorum.
Saygilar
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
<?xml version="1.0" encoding="{$lang->items['LANG_GLOBAL_ENCODING']}"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{$lang->items['LANG_GLOBAL_DIRECTION']}" lang="{$lang->items['LANG_GLOBAL_LANGCODE']}" xml:lang="{$lang->items['LANG_GLOBAL_LANGCODE']}">
<head>
<title>$master_board_name | {$lang->items['LANG_START_TITLE']}</title>
$headinclude
</head>
<body>
$header
<HEAD> <script type="text/javascript">
<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://www.kardesboard.com
Created by: HaganeNoKokoro :: http://www.kardesboard.com/buvp9 */
/*
* Notes on hue
*
* This script uses hue rotation in the following manner:
* hue=0 is red (#FF0000)
* hue=60 is yellow (#FFFF00)
* hue=120 is green (#00FF00)
* hue=180 is cyan (#00FFFF)
* hue=240 is blue (#0000FF)
* hue=300 is magenta (#FF00FF)
* hue=360 is hue=0 (#FF0000)
*
* Notes on the script
*
* This script should function in any browser that supports document.getElementById
* It has been tested in Netscape7, Mozilla Firefox 1.0, and Internet Explorer 6
*
* Accessibility
*
* The script does not write the string out, but rather takes it from an existing
* HTML element. Therefore, users with javascript disabled will not be adverely affected.
* They just won't get the pretty colors.
*/
/*
* splits par.firstChild.data into 1 span for each letter
* ARGUMENTS
* span - HTML element containing a text node as the only element
*/
function toSpans(span) {
var str=span.firstChild.data;
var a=str.length;
span.removeChild(span.firstChild);
for(var i=0; i<a; i++) {
var theSpan=document.createElement("SPAN");
theSpan.appendChild(document.createTextNode(str.charAt(i)));
span.appendChild(theSpan);
}
}
/*
* creates a rainbowspan object
* whose letters will be colored [deg] degrees of hue
* ARGUMENTS
* span - HTML element to apply the effect to (text only, no HTML)
* hue - what degree of hue to start at (0-359)
* deg - how many hue degrees should be traversed from beginning to end of the string (360 => once around, 720 => twice, etc)
* brt - brightness (0-255, 0 => black, 255 => full color)
* spd - how many ms between moveRainbow calls (less => faster)
* hspd - how many hue degrees to move every time moveRainbow is called (0-359, closer to 180 => faster)
*/
function RainbowSpan(span, hue, deg, brt, spd, hspd) {
this.deg=(deg==null?360:Math.abs(deg));
this.hue=(hue==null?0:Math.abs(hue)%360);
this.hspd=(hspd==null?3:Math.abs(hspd)%360);
this.length=span.firstChild.data.length;
this.span=span;
this.speed=(spd==null?50:Math.abs(spd));
this.hInc=this.deg/this.length;
this.brt=(brt==null?255:Math.abs(brt)%256);
this.timer=null;
toSpans(span);
this.moveRainbow();
}
/*
* sets the colors of the children of [this] as a hue-rotating rainbow starting at this.hue;
* requires something to manage ch externally
* I had to make the RainbowSpan class because M$IE wouldn't let me attach this prototype to [Object]
*/
RainbowSpan.prototype.moveRainbow = function() {
if(this.hue>359) this.hue-=360;
var color;
var b=this.brt;
var a=this.length;
var h=this.hue;
for(var i=0; i<a; i++) {
if(h>359) h-=360;
if(h<60) { color=Math.floor(((h)/60)*b); red=b;grn=color;blu=0; }
else if(h<120) { color=Math.floor(((h-60)/60)*b); red=b-color;grn=b;blu=0; }
else if(h<180) { color=Math.floor(((h-120)/60)*b); red=0;grn=b;blu=color; }
else if(h<240) { color=Math.floor(((h-180)/60)*b); red=0;grn=b-color;blu=b; }
else if(h<300) { color=Math.floor(((h-240)/60)*b); red=color;grn=0;blu=b; }
else { color=Math.floor(((h-300)/60)*b); red=b;grn=0;blu=b-color; }
h+=this.hInc;
this.span.childNodes[i].style.color="rgb("+red+", "+grn+", "+blu+")";
}
this.hue+=this.hspd;
}
// End -->
</script> </HEAD> <BODY> <div align="center"> <h3 id="r1">ONUR BOARD`A HO^ GELD0N0Z</h3> </div> <script type="text/javascript">
var r1=document.getElementById("r1"); //get span to apply rainbow
var myRainbowSpan=new RainbowSpan(r1, 0, 360, 255, 50, 18); //apply static rainbow effect
myRainbowSpan.timer=window.setInterval("myRainbowSpan.moveRainbow()", myRainbowSpan.speed);
</script> <div align="center"> <p id="r2">Sitemiz Sayg1n bir ortamda sizlere hizmet vermeyi amaçlamaktad1r.</p> </div> <script type="text/javascript">
var r2=document.getElementById("r2"); //get span to apply rainbow
var myRainbowSpan2=new RainbowSpan(r2, 0, 360, 255, 50, 348); //apply static rainbow effect
myRainbowSpan2.timer=window.setInterval("myRainbowSpan2.moveRainbow()", myRainbowSpan2.speed);
</script> <p><center>
<p> <font face="arial, helvetica" size"-2"> <a href=""></a></font> </p>
</center><p>
<!-- baslangic Hosgeldin(Designed By Adss_64)-->
<center>
<table class="tableinborder" border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border: 4px inset #4A4A4A" bordercolor="#111111">
<tbody><tr>
<td class="tablea" align="center"><center>
<font color="#C0C0C0" face="Arial" size="2"><b><marquee width="750" scrollamount="3">+++ Selam $wbbuserdata[username], HO^ GELD0N0Z....Sitemizde iyi Vakit Geçirmenizi Temenni ederiz Sorunlar1n1zi 0çin Kadromuz Herzaman Hizmetinizdedir.--..... +++</marquee></b></font><b> </b></center>
</td></tr>
</tbody></table></center>
<!-- baslangic Hosgeldin(Designed By Adss_64)--><br/>
<p align="center" style="width:{$style['tableinwidth']}">
<select name="styleid" onchange="if(this.options[this.selectedIndex].value=='-1'){this.selectedIndex=0; return false;} window.location.href=('index.php?styleid='+this.options[this.selectedIndex].value)"><option value='-1'>{$lang->items['LANG_START_STYLE']}</option><option value='-1'>-------------------</option><$style_options></select></p>
<table style="width:{$style['tableinwidth']}">
$shoutbox
$toplist
<table width={$style['tableinwidth']} cellspacing="0" cellpadding="0" border="0"><tr>
<td align="left" heigth="10"><img src="{$style['imagefolder']}/obenlinks.gif"></td>
<td width="100%" background="{$style['imagefolder']}/obenmitte.gif"></td>
<td align="right" heigth="10"><img src="{$style['imagefolder']}/obenrechts.gif"></td>
</tr></table>
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">
<if($wbbuserdata['userid']==0)>
<then>
<tr>
<td class="tablea" align="left"><span class="normalfont"><b>{$lang->items['LANG_START_WELCOME_TITLE']}</b></span></td>
</tr>
<tr>
<td class="tableb" align="left" style="text-align: justify"><span class="smallfont">{$lang->items['LANG_START_WELCOME']}</span></td>
</tr>
</then>
<else>
<tr>
<td class="tablea"><table style="width:100%" cellspacing="0" cellpadding="0" border="0">
<tr class="tablea_fc">
<td align="left"><span class="smallfont">{$lang->items['LANG_START_WELCOMEBACK']} <b>$usercbar_username</b> <a href="logout.php?u=$wbbuserdata[userid]{$SID_ARG_2ND}">{$lang->items['LANG_START_LOGOUT']}</a><br /><b><a href="search.php?action=new{$SID_ARG_2ND}">{$lang->items['LANG_START_NEWPOSTS']} $lastvisitdate <span class="time">$lastvisittime</span>.</span></td>
<td align="right"><span class="smallfont">{$lang->items['LANG_START_CURRENTTIME']} <span class="time">$currenttime</span>.<br />{$lang->items['LANG_START_TIMEZONE']}</span></td>
</tr>
</table></td>
</tr>
</else>
</if>
$boardbit
</table>
<table width={$style['tableinwidth']} cellspacing="0" cellpadding="0" border="0"><tr>
<td align="left" heigth="10"><img src="{$style['imagefolder']}/untenlinks.gif"></td>
<td width="100%" background="{$style['imagefolder']}/untenmitte.gif"></td>
<td align="right" heigth="10"><img src="{$style['imagefolder']}/untenrechts.gif"></td>
</tr></table>
<br />
<table width={$style['tableinwidth']} cellspacing="0" cellpadding="0" border="0"><tr>
<td align="left" heigth="10"><img src="{$style['imagefolder']}/obenlinks.gif"></td>
<td width="100%" background="{$style['imagefolder']}/obenmitte.gif"></td>
<td align="right" heigth="10"><img src="{$style['imagefolder']}/obenrechts.gif"></td>
</tr></table>
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">
<if($showuseronline==1)>
<then>
<tr>
<td class="tabletitle" colspan="<if($hide_modcell==0)><then>6</then><else>5</else></if>" align="left"><span class="smallfont"><b><a href="wiw.php{$SID_ARG_1ST}">{$lang->items['LANG_START_SHOWUSERONLINE']}</a></b></span></td>
</tr>
<tr>
<td rowspan="2" class="tableb" align="center"><img src="{$style['imagefolder']}/online.gif" alt="" title="" /></td>
<td colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" class="tablea" align="left"><span class="smallfont">{$lang->items['LANG_START_USERONLINE']}</span></td>
</tr>
<tr>
<td class="tablea" colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" align="left"><span class="smallfont"><if($useronline=="")><then> </then></if>$useronline</span></td>
</tr>
</then>
</if>
<if($showpmonindex==1 && $wbbuserdata['userid']!=0 && $wbbuserdata['can_use_pms']==1 && $wbbuserdata['receivepm']==1)>
<then>
<tr>
<td class="tabletitle" align="left" colspan="<if($hide_modcell==0)><then>6</then><else>5</else></if>"><span class="smallfont"><b>{$lang->items['LANG_START_PM']}</b></span></td>
</tr>
<tr>
<td align="center" class="tableb"><if($countnew>0)>
<then><img src="{$style['imagefolder']}/on.gif" alt="{$lang->items['LANG_START_NEWPM']}" title="{$lang->items['LANG_START_NEWPM']}" /></then>
<else><img src="{$style['imagefolder']}/off.gif" alt="{$lang->items['LANG_START_NONEWPM']}" title="{$lang->items['LANG_START_NONEWPM']}" /></else>
</if></td>
<td align="left" colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" class="tablea"><span class="smallfont"><b><a href="pms.php{$SID_ARG_1ST}">{$lang->items['LANG_START_PMIN']}</a></b><br />{$lang->items['LANG_START_PMS']}</span></td>
</tr>
</then>
</if>
<if(isset($birthdaybit) || isset($eventbit))>
<then>
<tr>
<td class="tabletitle" align="left" colspan="<if($hide_modcell==0)><then>6</then><else>5</else></if>"><span class="smallfont"><b>{$lang->items['LANG_START_SHOWEVENTS']}</b></span></td>
</tr>
<if(isset($birthdaybit))>
<then>
<tr>
<td class="tableb" align="center"><img src="{$style['imagefolder']}/birthday.gif" alt="" title="" border="0" /></td>
<td class="tablea" colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" align="left"><span class="smallfont"><b>{$lang->items['LANG_START_BIRTHDAY']}</b><br />$birthdaybit</span></td>
</tr>
</then>
</if>
<if(isset($eventbit))>
<then>
<tr>
<td class="tableb" align="center"><img src="{$style['imagefolder']}/events.gif" alt="" title="" border="0" /></td>
<td class="tablea" colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" align="left"><span class="smallfont"><b>{$lang->items['LANG_START_TODAYEVENT']}</b><br />$eventbit</span></td>
</tr>
</then>
</if>
</then>
</if>
<if($showstats==1)>
<then>
<tr>
<td class="tabletitle" align="left" colspan="<if($hide_modcell==0)><then>6</then><else>5</else></if>"><span class="smallfont"><b>{$lang->items['LANG_START_STATISTIC']}</b></span></td>
</tr>
<tr>
<td class="tableb" align="center"><img src="{$style['imagefolder']}/stats.gif" alt="" border="0" /></td>
<td colspan="<if($hide_modcell==0)><then>5</then><else>4</else></if>" class="tablea" align="left"><span class="smallfont">{$lang->items['LANG_START_STATISTIC_MEMBERS']} $stats[usercount] | {$lang->items['LANG_START_STATISTIC_THREADS']} $stats[threadcount] | {$lang->items['LANG_START_STATISTIC_POSTS']} $stats[postcount] ({$lang->items['LANG_START_STATISTIC_AVERAGE']} $postperday {$lang->items['LANG_START_STATISTIC_POSTPERDAY']})<br />
{$lang->items['LANG_START_STATISTIC_NEWESTMEMBER']} <a href="profile.php?userid=$stats[lastuserid]{$SID_ARG_2ND}">$stats[username]</a>.</span></td>
</tr>
</then>
</if>
</table>
<table width={$style['tableinwidth']} cellspacing="0" cellpadding="0" border="0"><tr>
<td align="left" heigth="10"><img src="{$style['imagefolder']}/untenlinks.gif"></td>
<td width="100%" background="{$style['imagefolder']}/untenmitte.gif"></td>
<td align="right" heigth="10"><img src="{$style['imagefolder']}/untenrechts.gif"></td>
</tr></table>
<br />
<if($wbbuserdata['userid']==0)>
<then>
<table width={$style['tableinwidth']} cellspacing="0" cellpadding="0" border="0"><tr>
<td align="left" heigth="10"><img src="{$style['imagefolder']}/obenlinks.gif"></td>
<td width="100%" background="{$style['imagefolder']}/obenmitte.gif"></td>
<td align="right" heigth="10"><img src="{$style['imagefolder']}/obenrechts.gif"></td>
</tr></table>
<a name="login" id="login"></a>
<if($allowloginencryption==1)><then>
<script type="text/javascript" src="js/sha1.js"></script>
<script type="text/javascript" src="js/crypt.js"></script>
</then></if>
<form method="post" action="login.php" name="loginform"<if($allowloginencryption==1)><then> onsubmit="return encryptlogin(this);"</then></if>>
<input type="hidden" name="send" value="send" />
<input type="hidden" name="sid" value="$session[hash]" />
<if($allowloginencryption==1)><then>
<input type="hidden" name="authentificationcode" value="$session[authentificationcode]" />
<input type="hidden" name="crypted" value="false" /></then></if>
<table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder">
<tr>
<td class="tabletitle" align="left"><span class="smallfont"><b>{$lang->items['LANG_START_LOGIN']}</b></span></td>
</tr>
<tr>
<td class="tableb"><table cellpadding="0" cellspacing="5" align="center" class="tableb_fc">
<tr>
<td><span class="smallfont">{$lang->items['LANG_START_USERNAME']}</span></td>
<td><span class="smallfont"><input type="text" name="l_username" maxlength="50" size="20" class="input" tabindex="1" /> </span></td>
<td><span class="smallfont">{$lang->items['LANG_START_PASSWORD']} (<a href="forgotpw.php{$SID_ARG_1ST}">{$lang->items['LANG_START_LOSTPW']}</a>):</span></td>
<td><span class="smallfont"><input type="password" name="l_password" maxlength="30" size="20" class="input" tabindex="2" /> </span></td>
<if($allowloginencryption==1)><then>
<td><span class="smallfont"><label for="checkbox1">{$lang->items['LANG_GLOBAL_ENCRYPT_TRANSFER']}</label></span></td>
<td><span class="smallfont"><input type="checkbox" id="checkbox1" name="activateencryption" onclick="activate_loginencryption(document.loginform);" /> </span></td></then></if>
<td><input type="submit" value="{$lang->items['LANG_START_LOGIN']}" class="input" tabindex="3" /></td>
</tr>
</table></td>
</tr>
</table></form>
<if($allowloginencryption==1)><then>
<script type="text/javascript">
<!--
activate_loginencryption(document.loginform);
//-->
</script></then></if>
<table width={$style['tableinwidth']} cellspacing="0" cellpadding="0" border="0"><tr>
<td align="left" heigth="10"><img src="{$style['imagefolder']}/untenlinks.gif"></td>
<td width="100%" background="{$style['imagefolder']}/untenmitte.gif"></td>
<td align="right" heigth="10"><img src="{$style['imagefolder']}/untenrechts.gif"></td>
</tr></table>
<br />
</then>
</if>
<br/> <table cellpadding="{$style['tableincellpadding']}" cellspacing="{$style['tableincellspacing']}" border="{$style['tableinborder']}" style="width:{$style['tableinwidth']}" class="tableinborder"> <tr> <td class="tableb"> <table style="width:98%"> <tr> <td align="left"> <table> <tr align="center"> <td><img src="{$style['imagefolder']}/on.gif" alt="{$lang->items['LANG_START_NEW_POSTS']}" title="{$lang->items['LANG_START_NEW_POSTS']}" border="0" /></td> <td><span class="smallfont">{$lang->items['LANG_START_NEW_POSTS']} </span></td> <td><img src="{$style['imagefolder']}/off.gif" alt="{$lang->items['LANG_START_NONEW_POSTS']}" title="{$lang->items['LANG_START_NONEW_POSTS']}" border="0" /></td> <td><span class="smallfont">{$lang->items['LANG_START_NONEW_POSTS']} </span></td> <td><img src="{$style['imagefolder']}/offclosed.gif" alt="{$lang->items['LANG_START_BOARD_CLOSED']}" title="{$lang->items['LANG_START_BOARD_CLOSED']}" border="0" /></td> <td><span class="smallfont">{$lang->items['LANG_START_BOARD_CLOSED']}</span></td> <td><img src="{$style['imagefolder']}/link.gif" alt="{$lang->items['LANG_START_BOARD_LINK']}" title="{$lang->items['LANG_START_BOARD_LINK']}" border="0" /></td> <td><span class="smallfont">{$lang->items['LANG_START_BOARD_LINK']} </span></td></tr> </table> </td> <td align="right"> <table> <tr> <td align="right"><span class="smallfont"><a href="search.php?action=24h&sid=$session[hash]">{$lang->items['LANG_START_CURRENT_THREADS']}</a><br /><a href="search.php?action=polls&sid=$session[hash]">{$lang->items['LANG_START_CURRENT_POLLS']}</a><br /><a href="markread.php?sid=$session[hash]">{$lang->items['LANG_START_MARKREAD_ALL']}</a></span></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <br/>
$footer
</body>
</html>
|
Benutzerinformationen überspringen
Date of registration: Sep 21st 2000
Location: Tokat/TÜRKIYE Hamburg/ALMANYA
Occupation: WEBMASTER
Hobbies: Güzel olan her sey
Danksagungen: 14526
![]()
Quoted
Orjinal Yazari YALNIZ KURT
Quoted
Orjinal Yazari ESoES
Bu stylin Supportunu ancak ben veririm baskasi veremez.
Supportumuzda cekildigi yerde !!!!!
ESOES HAKLIDIR!!!!!!!BUNU ÇEKEN ORDAKİ KURALLARI KABUL EDER KURALLARDA BAŞKA SİTEDE WERİLEMEZ DİO AÇIKÇA
Benutzerinformationen überspringen
Date of registration: Sep 21st 2000
Location: Tokat/TÜRKIYE Hamburg/ALMANYA
Occupation: WEBMASTER
Hobbies: Güzel olan her sey
Danksagungen: 14526
![]()
Quoted
Orjinal Yazari ESoES
Bu stylin Supportunu ancak ben veririm baskasi veremez.
Supportumuzda cekildigi yerde !!!!!