wezoo
04-28-2006, 07:14 PM
hi folks
please forgive my very novice question, im sure its easy for you guys, but hey, im an artist..
anyhoo, I'm trying to get a line of random images from a directory full of em to accross my page 4 or 5 say....
with my very lmited knowlede i got this far
HERE (http://www.cgempire.com)
as you can see theres one there and it changes on the refresh :banana:
which for me is a massive achievement, however its still not what i need
so any help would be fantastic
heres the code i got so far
<html>
<head>
<title></title>
</head>
<body>
<script language="javascript">
<!--
var b1dis = "<a href=\"";
var bdis = "\"><img src=\"";
var edis = " width=\"180\" height=\"180\" alt=\"some text\" border=\"1\"</a>";
var rnumb = "";
var img = "";
rnumb += Math.floor(Math.random()*5);
img = rnumb;
if (img == "0") {
document.write(b1dis+ "showthread.php?t=31" +bdis+ "/gallery/page1.gif\"" +edis);
}
if (img == "1") {
document.write(b1dis+ "page2.html" +bdis+ "/gallery/page2.gif\"" +edis);
}
if (img == "2") {
document.write(b1dis+ "page3.html" +bdis+ "/gallery/page3.gif\"" +edis);
}
if (img == "3") {
document.write(b1dis+ "page4.html" +bdis+ "/gallery/page4.gif\"" +edis);
}
if (img == "4") {
document.write(b1dis+ "page5.html" +bdis+ "/gallery/page5.gif\"" +edis);
}
// -->
</script>
</body>
</html>
please help
ohhh it must be html too :)
wez
ohh and thanks in advance
please forgive my very novice question, im sure its easy for you guys, but hey, im an artist..
anyhoo, I'm trying to get a line of random images from a directory full of em to accross my page 4 or 5 say....
with my very lmited knowlede i got this far
HERE (http://www.cgempire.com)
as you can see theres one there and it changes on the refresh :banana:
which for me is a massive achievement, however its still not what i need
so any help would be fantastic
heres the code i got so far
<html>
<head>
<title></title>
</head>
<body>
<script language="javascript">
<!--
var b1dis = "<a href=\"";
var bdis = "\"><img src=\"";
var edis = " width=\"180\" height=\"180\" alt=\"some text\" border=\"1\"</a>";
var rnumb = "";
var img = "";
rnumb += Math.floor(Math.random()*5);
img = rnumb;
if (img == "0") {
document.write(b1dis+ "showthread.php?t=31" +bdis+ "/gallery/page1.gif\"" +edis);
}
if (img == "1") {
document.write(b1dis+ "page2.html" +bdis+ "/gallery/page2.gif\"" +edis);
}
if (img == "2") {
document.write(b1dis+ "page3.html" +bdis+ "/gallery/page3.gif\"" +edis);
}
if (img == "3") {
document.write(b1dis+ "page4.html" +bdis+ "/gallery/page4.gif\"" +edis);
}
if (img == "4") {
document.write(b1dis+ "page5.html" +bdis+ "/gallery/page5.gif\"" +edis);
}
// -->
</script>
</body>
</html>
please help
ohhh it must be html too :)
wez
ohh and thanks in advance