• 10-04-2016, 13:25:36
    #1
    Merhaba arkadaşlar.
    Yine php ile alakalı bir sorunla buradayım

    Sitemde random olarak link göstermek istiyorum fakat bir örneğini bulamadım.
    Rand(0,3) gibi Google'da sonuçlar buldum ama bunu entegre edeceğim bir yer yok maalesef.

    <a title="a" target="_blank" href="ahmet.html">a</a>
    <a title="b" target="_blank" href="ali.html">b</a>
    <a title="c" target="_blank" href="ayse.html">c</a>
    Elimde yukarıdaki şeklin aynısı link var. Siteme koyduğumda sırayla a , b ve c olarak görünüyor. Ben bunları php ile sayfa her yenilendiğinde sırasını nasıl değiştirebilirim?

    Yani b - c - a şeklinde listelenecek. c - b - a şeklinde olacak. Sayfa her yenilendiğinde sırası değişecek.

    Yardımlarınız için şimdiden teşekkürler.
  • 10-04-2016, 15:45:15
    #2
    Buldum!
    Lazım olan arkadaşlar için kod aşağıdadır.

    <?php 
    $image[1] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/TYGTrwyiyEQ" frameborder="0" allowfullscreen></iframe>';  
    $image[2] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/wi91g3_9tqk" frameborder="0" allowfullscreen></iframe>';  
    $image[3] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/5EVhiBGvVFc" frameborder="0" allowfullscreen></iframe>';  
    $image[4] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/RWAdb1vgoik" frameborder="0" allowfullscreen></iframe>';  
    $image[5] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/fLexgOxsZu0" frameborder="0" allowfullscreen></iframe>';  
    $image[7] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/9bZkp7q19f0" frameborder="0" allowfullscreen></iframe>';  
    $image[8] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/8eBUVQ_WakI" frameborder="0" allowfullscreen></iframe>';  
    $image[9] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/RgEo_sxwZ8g" frameborder="0" allowfullscreen></iframe>';  
    $image[10] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/dLhFDYQHDQY" frameborder="0" allowfullscreen></iframe>';  
    $image[11] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/Vysgv7qVYTo" frameborder="0" allowfullscreen></iframe>';  
    $image[12] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/etM7T-JQPrE" frameborder="0" allowfullscreen></iframe>';  
    $image[13] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/Z1ZKaR-9Kt4" frameborder="0" allowfullscreen></iframe>';  
    $image[14] = '<iframe width="629" height="236" src=""http://www.dailymotion.com/embed/video/xr3jt8" frameborder="0" allowfullscreen></iframe>';  
    $image[15] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xqw938" frameborder="0" allowfullscreen></iframe>';  
    $image[16] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xozzke" frameborder="0" allowfullscreen></iframe>';  
    $image[17] = '<iframe width="629" height="236" src=""http://www.dailymotion.com/embed/video/xmx8ce" frameborder="0" allowfullscreen></iframe>';  
    $image[18] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xrh5mq" frameborder="0" allowfullscreen></iframe>';  
    $image[20] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xq7j8j" frameborder="0" allowfullscreen></iframe>';  
    $image[21] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/wcLNteez3c4" frameborder="0" allowfullscreen></iframe>';  
    $image[22] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/SmM0653YvXU" frameborder="0" allowfullscreen></iframe>';  
    $image[23] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/9O72RLP5fF4" frameborder="0" allowfullscreen></iframe>';  
    $image[24] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xssxuf" frameborder="0" allowfullscreen></iframe>';  
    $image[25] = '<iframe width="629" height="236" src="http://www.dailymotion.com/swf/video/xh74og" frameborder="0" allowfullscreen></iframe>';  
    $image[26] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/TzxwOrT6Beo" frameborder="0" allowfullscreen></iframe>';  
    $image[27] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/TzxwOrT6Beo" frameborder="0" allowfullscreen></iframe>';  
    $image[28] = '<iframe width="629" height="236" src="http://www.youtube.com/embed/Mre_-x2ded4" frameborder="0" allowfullscreen></iframe>';  
    $image[29] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xq78jf" frameborder="0" allowfullscreen></iframe>';  
    $image[30] = '<iframe width="629" height="236" src="http://www.dailymotion.com/embed/video/xrfexf" frameborder="0" allowfullscreen></iframe>';  
    $randomsayi=rand(0,30); 
    echo $image[$randomsayi]; 
    ?>