Şimdi Ara

Acil yardim: Php ile haber bandi uygulamasinda sorunum var

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
2 Misafir (1 Mobil) - 1 Masaüstü1 Mobil
5 sn
5
Cevap
0
Favori
619
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • haber.php dosyas1


    <html><head>

    <title>News</title>


    <style type="text/css">
    <!--
    BODY { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; }


    /* FONT COLORS */


    TABLE { COLOR: #000000; FONT: 11px arial, sans-serif; font-weight: normal }

    .title { COLOR: #0033FF; FONT: 12px arial, sans-serif; font-weight: bold; }

    /* PAGE LINK COLORS */

    a:link { color: #0033FF; text-decoration: underline; }

    a:visited { color: #6633FF; text-decoration: underline; }

    a:active { color: #0033FF; text-decoration: underline; }

    a:hover { color: #6699FF; text-decoration: none; }

    -->
    </style>


    </head>

    <BODY BGCOLOR="#F0F0F0" TEXT="#000000" leftmargin="0" rightmargin="0" topmargin="0"

    bottommargin="0" marginheight="0" marginwidth="0" onMouseover="scrollspeed=0"

    onMouseout="scrollspeed=current">

    <div id="NewsDiv" style="position:absolute; left:0; top:0; width:100%">
    <table cellpadding="5" cellspacing="0" border="0" width="100%"><tr><td>
    <?php
    $flag = '';
    $count = 0;


    $file = "http://www.meb.gov.tr/haberler/xml/meb.xml";

    function contents($parser, $data){
    echo $data;
    }

    function startTag($parser, $data, $attributes){
    global $flag;
    if ($data == 'BASLIK')
    $flag = $attributes['ID'];

    echo "<b><a href=http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=$flag target=_blank>";
    }

    function endTag($parser, $data){
    echo "</a></b><br /><br />";
    }

    $xml_parser = xml_parser_create();
    xml_parser_set_option($xml_parser, XML_OPTION_CASE_FOLDING, false);
    xml_set_element_handler($xml_parser, "startTag", "endTag");

    xml_set_character_data_handler($xml_parser, "contents");

    $fp = fopen($file, "r");

    $data = fread($fp, 80000);

    if(!(xml_parse($xml_parser, $data, feof($fp)))){
    die("Error on line " . xml_get_current_line_number($xml_parser));
    }

    xml_parser_free($xml_parser);

    fclose($fp);

    ?>

    </td></tr></table>
    </div>


    <!-- YOU DO NOT NEED TO EDIT BELOW THIS LINE -->


    <script language="JavaScript" type="text/javascript">
    <!-- HIDE CODE

    var scrollspeed = 1 // SET SCROLLER SPEED 1 = SLOWEST
    var startdelay = 2 // START SCROLLING DELAY IN SECONDS
    var nextdelay = 0 // SECOND SCROLL DELAY IN SECONDS 0 = QUICKEST
    var topspace = "2px" // TOP SPACING FIRST TIME SCROLLING
    var frameheight = "200px" // IF YOU RESIZE THE WINDOW EDIT THIS HEIGHT TO MATCH

    current = (scrollspeed)
    function NewsScrollStart(){
    marqueeheight=document.all? parent.document.all.NewsWindow.height :

    parent.document.getElementById("NewsWindow").getAt tribute("height")
    dataobj=document.all? document.all.NewsDiv : document.getElementById("NewsDiv")
    dataobj.style.top=topspace
    AreaHeight=dataobj.offsetHeight
    setTimeout("ScrollNewsDiv()",( startdelay * 1000 ))
    }

    function ScrollNewsDiv(){
    dataobj.style.top=parseInt(dataobj.style.top)-(scrollspeed)
    if (parseInt(dataobj.style.top)<AreaHeight*(-1)) {
    dataobj.style.top=frameheight
    setTimeout("ScrollNewsDiv()",( nextdelay * 1000 ))
    }
    else {
    setTimeout("ScrollNewsDiv()",30)
    }

    }
    window.onload=NewsScrollStart
    // END HIDE CODE -->
    </script>

    </body>
    </html>



    html içine de su sekilde ekledim.


    <div id="IframeScroller">
    <table cellpadding="2" cellspacing="0" border="0" style="border: #000000 1px solid;

    background-color: black;COLOR: #FFFFFF; FONT: 13px arial, sans-serif; font-weight:

    bold;"><tr><td align="center">
    Haberler<br>
    </td></tr><tr><td>
    <iframe id="NewsWindow" src="haber.php" width="150" height="200" marginwidth="0"

    marginheight="0" frameborder="0" scrolling="no" style="border: #000000 1px solid;"></iframe>
    </td></tr></table>
    </div>


    ama sitede haberlerin görüntülenecegi yerde [B]CGI Error
    The specified CGI application misbehaved by not returning a complete set of HTTP

    headers.[/B] hatasi veriyor.

    Ne yapmaliyim? Lütfen yardim edin.







  • Sorunun şu; Sunucun PHP desteklemiyor olabilir mi ????????????????????????????????

    Script'de (js hatalari haric) hic bir hata gorunmuyor ...

    (bkz. http://www.eggdrop.gen.tr/test/haber.php)



    < Bu mesaj bu kişi tarafından değiştirildi Midgàrd -- 20 Ekim 2006; 10:48:45 >
    _____________________________
    reklamsiz forum istiyorus | msjlar arasinda 3 dk. beklemek istemiyorus | yoneticilerin dikkatineee
  • Çok tesekkür ederim. Sizin haber.php kodlariniz çalisti. Çok sagolun. Emeinize saglik...
    _____________________________
    Her şey gönlünüzce olsun
  • Ya bu sefer de yazi kaymiyor yukari dogru. Ne yapabilirim?
    _____________________________
    Her şey gönlünüzce olsun
  • Kodlarda bazi yazim hatalari vardi, onlari düzeltince oldu. Tekrar tesekkür ederim.

    haber.php

    <html><head>

    <title>News</title>


    <style type="text/css">
    <!--
    BODY { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; }


    /* FONT COLORS */


    TABLE { COLOR: #000000; FONT: 11px arial, sans-serif; font-weight: normal }

    .title { COLOR: #0033FF; FONT: 12px arial, sans-serif; font-weight: bold; }

    /* PAGE LINK COLORS */

    a:link { color: #0033FF; text-decoration: underline; }

    a:visited { color: #6633FF; text-decoration: underline; }

    a:active { color: #0033FF; text-decoration: underline; }

    a:hover { color: #6699FF; text-decoration: none; }

    -->
    </style>


    </head>

    <BODY BGCOLOR="#F0F0F0" TEXT="#000000" leftmargin="0" rightmargin="0" topmargin="0"

    bottommargin="0" marginheight="0" marginwidth="0" onMouseover="scrollspeed=0"

    onMouseout="scrollspeed=current">

    <div id="NewsDiv" style="position:absolute; left:0; top:0; width:100%">
    <table cellpadding="5" cellspacing="0" border="0" width="100%"><tr><td>
    <b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Milletvekillerinin 100 Türk Büyüðü Gibi Gösterildiði Ýddialarýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>“Azýnlýk Okullarý Tabelasýnda MEB ve TC Yazýlmayacak” Ýddiasýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Bakan Çelik, Eðitimcilerle Biraraya Geldi</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Tabelalarda T.C. Kullanýlmadýðý Yönündeki Ýddialara Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Ankarada Okul Açýlýþlarý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Bakan Çelik, Büyük Dil Kurultayýnda Konuþtu</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Cumhuriyet Eðitim Gezileri</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Millî Eðitim Bakaný Doç. Dr. Hüseyin ÇELÝK Tarafýndan ‘BTSO Eðitim Kampüsü’ Açýldý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>2006-2007 Eðitim Öðretim Yýlý, Antalyada Baþbakan Recep Tayyip Erdoðanýn da Katýldýðý Bir Törenle Baþladý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Rezaletin adresi Gölbaþý Baþlýklý Habere Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Öðretmenlere Drama Eðitimi Veriliyor</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>7. Ulusal Fen Bilimleri ve Matematik Eðitimi Kongresi</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Pansiyonlardaki Yerleþtirmelerle Ýlgili Ýddialara Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Akþam Gazetesinin ÝNSAF Baþlýklý Manþetine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>2006 - 2007 Ýl Millî Eðitim Müdürleri Toplantýsý Ankarada Yapýldý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>OKS Sonuçlarý Ýle Ýlgili Açýklama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Yeni Öðretmen Atamalarý </a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>“Bakan tavsiye etmiþ” ve “Çelik kendini tekzip etti” Haberlerine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>100 Temel Eser Ýle Ýlgili Ýddialara Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Öðretmenevleri Fuarý Ankarada Düzenlendi</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Okullarda Medya Okur Yazarlýðý Dersi </a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Türkiye Kýzýlay Derneði Ýle Protokol Ýmzalandý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>ASO Ýle Mesleki Eðitimde Ýþbirliði Yapýlacak</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Hayalleri söndüren tercih skandalý Haberine Açýklama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Müdür odasýnda taciz sahneleri Baþlýklý Habere Açýklama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Oktay Ekþi’nin Bekleyelim görelim Baþlýklý Köþe Yazýsýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Yurtdýþýna Öðrenci Gönderilecek</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Umut Adýmlarý Projesi </a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>“Müslüman deðilim diyen derse girmez” Haberine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>"Bir Ali Dibo da MEBde" Haberine Yalanlama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>36 YTL zam verdi 120 YTL geri alacak Haberine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Vatan Gazetesinin YAÞA BABA Haberine Cevap;</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Cüneyt Ülseverin Manzara-i umumiye Baþlýklý Yazýsýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Türbanýn yeni sýnavý ve Türbana yeþil ýþýk mý? Haberlerine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Yeni Kurulan Üniversitelerle Ýlgili Yapýlan Açýklama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Millî Eðitim Vakfý Ýle Ýlgili Haberlere Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Çin malý istifasý Haberine Ziya Selçuk’un Cevabý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Kayýrma Ýstifalar Haberine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Ýstifalar Fuhuþtan Haberine Yapýlan Açýklama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Müdürlere Emeklilik Ýçin Baský Yapýldýðý Ýddialarýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>3. Dönem Türkiye Öðrenci Meclisleri Ýle Ýlgili Açýklama</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Takvim Gazetesi’nin “MHP kanla besleniyor” haberine verilen cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Sabah Gazetesi’nin “Uzattýðý eli ýsýrdýlar” haberine verilen cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Oktay Ekþinin Eðitimde irtica var mý? Yazýsýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Özdemir Ýncenin Sosyal Bilimler Liseleri Ýle Ýlgili Ýddialarýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Sabah Gazetesinin Ýyi tatiller Sayýn Bakan Haberine Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>YÖKün Formasyon Açýklamasýna Düzeltme</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Formasyon Eðitimi Açýklamasý</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Özdemir Ýncenin Medrese cehaleti bilime karþý Yazýsýna Cevap</a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Danýþtaya gizli by-pass Haberine Düzeltme </a></b><br /><br /><b><a href="javascript:if(confirm('http://www.meb.gov.tr/haberler/haberayrinti.asp?ID= \n\nThis file was not retrieved by Teleport Pro, because it is addressed on a domain or path outside the boundaries set for its Starting Address. \n\nDo you want to open it from the server?'))window.location='http://www.meb.gov.tr/haberler/haberayrinti.asp?ID='" tppabs="http://www.meb.gov.tr/haberler/haberayrinti.asp?ID=" target=_blank>Cüneyt Ülseverin Köylü kurnazlýðý Yazýsýna Cevap</a></b><br /><br /></a></b><br /><br /></a></b><br /><br />

    </td></tr></table>
    </div>


    <!-- YOU DO NOT NEED TO EDIT BELOW THIS LINE -->


    <script language="JavaScript" type="text/javascript">
    <!-- HIDE CODE

    var scrollspeed = 1 // SET SCROLLER SPEED 1 = SLOWEST
    var startdelay = 2 // START SCROLLING DELAY IN SECONDS
    var nextdelay = 0 // SECOND SCROLL DELAY IN SECONDS 0 = QUICKEST
    var topspace = "2px" // TOP SPACING FIRST TIME SCROLLING
    var frameheight = "200px" // if you resize the window edit this height to match
    current = (scrollspeed)
    function NewsScrollStart(){
    marqueeheight=document.all? parent.document.all.NewsWindow.height : parent.document.getElementById("NewsWindow").getAttribute("height")
    dataobj=document.all? document.all.NewsDiv : document.getElementById("NewsDiv")
    dataobj.style.top=topspace
    AreaHeight=dataobj.offsetHeight
    setTimeout("ScrollNewsDiv()",( startdelay * 1000 ))
    }

    function ScrollNewsDiv(){
    dataobj.style.top=parseInt(dataobj.style.top)-(scrollspeed)
    if (parseInt(dataobj.style.top)<AreaHeight*(-1)) {
    dataobj.style.top=frameheight
    setTimeout("ScrollNewsDiv()",( nextdelay * 1000 ))
    }
    else {
    setTimeout("ScrollNewsDiv()",30)
    }

    }
    window.onload=NewsScrollStart
    // END HIDE CODE -->
    </script>

    </body>
    </html>
    _____________________________
    Her şey gönlünüzce olsun




  • Yapay Zeka’dan İlgili Konular
    Daha Fazla Göster
    
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.