you have to use PHP at least, here is the code to build an array
PHP Code:[SIZE=3]
<?
$pictures = array("pic1.jpeg" , "pic2.jpeg" , "pic3.jpeg" , "pic4.jpeg" , "pic5.jpeg" , "pic6.jpeg" , "pic7.jpeg" );
shuffle($pictures);
?>
<HTML>
<HEAD>
<title>Your page name</TITLE>
</head>
<BODY>
<CENTER>
<H1> your page here</H1>
<table width = 100%>
<tr>
<?
for ( $i = 0; $i < 3; $i++ )
{
echo"<td align = center><img src=\"";
echo $pictures[$i];
echo "\" width = 100 height = 100></td>";
}
?>
</tr>
</table>
</body>
</HTML>
[/SIZE]




Reply With Quote