Hi Everyone,<br><br>I am in the process of learning perl but need to finish a program quickly but am stuck on something. I am in the process of creating a very simple script to create a gallery from random files and urls. To expand a bit, what I am trying to do is the following:<br>
<br>read in a file that is in the following format:<br><br>1.jpg|<a href="http://www.site1.com/">http://www.site1.com/</a><br>2.jpg|<a href="http://www.site2.com/">http://www.site2.com/</a><br><br>etc all the way up to 500<br>
<br>Then, randomly choose 20 of the images, and put them into a variable so I can spit them out into the format:<br><br> <a href="<a href="http://www.site1.com/">http://www.site1.com/</a>"><Img src="1.jpg"></a><br>
<br>Can anyone please help me with this. The main problem I am having is splitting up the file with the source information in it, as I dont know how to read it into an array and split it.<br><br>Any help appreciated.<br><br>
Stu<br>