Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

marcos.lavorato

imagem random

Recommended Posts

Olá pessoal pegeui este código de imagens ranbom, mas queria transformar ele para que fosse a imagem de fundo, não uma imagem comum, veja só:

 

<?php$file_array = array('http://www.kirupa.com/me/footer/footer_home.gif','http://www.kirupa.com/me/footer/footer_mit.gif','http://www.kirupa.com/me/footer/footer_music.gif','http://www.kirupa.com/me/footer/footer_music2.gif','http://www.kirupa.com/me/footer/footer_tv.gif','http://www.kirupa.com/me/footer/footer_orange.gif','http://www.kirupa.com/me/footer/footer_game.gif');$total = count($file_array);$random = (mt_rand()%$total);$file = "$file_array[$random]";print("<img src=$file></a>");?>
tentei trocar o print para deixar como background mas não consegui.

Compartilhar este post


Link para o post
Compartilhar em outros sites

ao invés de imprimir com o PHP mande para o HTML, você não quer que fique como fundo da página? então fale isso pro html...

 

PHP [/tr][tr]

<?php

$file_array = array

('http://www.kirupa.com/me/footer/footer_home.gif',

'http://www.kirupa.com/me/footer/footer_mit.gif',

'http://www.kirupa.com/me/footer/footer_music.gif',

'http://www.kirupa.com/me/footer/footer_music2.gif',

'http://www.kirupa.com/me/footer/footer_tv.gif',

'http://www.kirupa.com/me/footer/footer_orange.gif',

'http://www.kirupa.com/me/footer/footer_game.gif');

$total = count($file_array);

$random = (mt_rand()%$total);

$file = "$file_array[$random]";

?>

<html>

<body background="<? print $file; ?>"

seu site aqui

 

</body>

</html>

[/tr]

 

tendeu?

 

 

 

até... :)

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.