Hi

I was wondering if anyone one could help. I am setting up and intranet using drupal 5.2 and views module. I have been trying to follow the handbooks and forums to enhance my site and am slowly but surely configuring to how I want. One thing that is beating me is that I want an icon/small png file to appear in place of certain taxonomy when using views. I have been able to manage this without views using this. However it does not seem to work in table mode in Views.

I have also been trying to use Customising table views generated by the views.module. I have also found that I can modify the term data using the function phptemplate_views_handle_field_term_data_name.

My problem is that my php skills are very, very weak and I am not sure what to pass to this function, what to assign the file to, nor how to send it back to the calling function. I was thinking something on the lines of

switch (some_variable)
  case "Term 1":
    some_variable = icon1.png;
  case "Term 2":
    some_variable = icon2.png;
  case "Term 3":
    some_variable = icon3.png;
  default:
    Leave as text;

I would really appreciate some help on the actual syntax on how to do this.
Thanks
TJ