Guest User

Untitled

a guest
Jan 15th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <a href="COL1"><IMG SRC="COL2" />COL3</a>
  2.  
  3. $separation_char = "|"; // character separating fields
  4. $filename = "test.csv";
  5.  
  6. $row = 1;
  7. if (($handle = fopen($filename, "r")) !== FALSE) {
  8. while (($data = fgetcsv($handle, 1000, $separation_char)) !== FALSE) {
  9. echo '<a href="' . $data[0] . '"><IMG SRC="' . $data[1] . '" />' . $data[2] . '</a>';
  10. }
  11. fclose($handle);
  12. }
Add Comment
Please, Sign In to add comment