I have one csv file separated by the following character |. The file has three columns; one is the url(COL1), the other is a small text(COL3), and the last one its an image location(COL2). I need a script that gives me the html code like this with the data from the csv file:
<a href="COL1"><IMG SRC="COL2" />COL3</a>
How can I do this?