View Single Post
  #7 (permalink)  
Old 05-31-2003, 12:14 AM
smallfry smallfry is offline
Junior Member
 
Join Date: Mar 2003
Posts: 18
I did contact my provider and that folder is created when you up load an image.. He didn't turn it off so I added an if else statement that finally got rid of the red x that appeared occasionally
Code:
$content .= "<tr><td>";
if ($nimi == 'MAPS-PICS/RF/ACTION/_vti_cnf')
{$content .= "
<center><a href=\"MAPS-PICS/RF/ACTION/0616_screen076.jpg\"target=\"_blank\"><img src=\"MAPS-PICS/RF/ACTION/0616_screen076.jpg\" width=\"125\" height=\"115\" border=\"0\" alt=\"Click to Enlarge\">
</center></a>";}
else
{$content .= "
<center><a href=\"$nimi\"target=\"_blank\"><img src=\"$nimi\" width=\"125\" height=\"115\" border=\"0\" alt=\"Click to Enlarge\">
</center></a>";}
Reply With Quote