Hi I would like to ask some aadvise ffrom u guys. The thing is like this... I'm planning to display a set of picture.I have an array which i randomize earlier.The array contain the path which points to each picture through something like C:/pic/picture[$i]. So the picture display would depends on the $i. How can i do it in html.Or maybe in PHP? Please describe in detail and with example code. What's the difference it would make.?? Please advise. Thanks.
do it in php AND html...
for ($i = 0; $i < $yourArray; $i++) { echo '<a href="$i">$i</a>'; }
thats only an example, fill in your desired values ...