"Richard" <anonymous@127.000> schrieb im Newsbeitrag
news:...
> Mike! wrote:
>
> > Hi!
>
> > I have some preview-images on my homepage and I'd like to create a link
> > to my ftp-server so one can download the picture in its full size when
he
> > clicks on the preview-picture.
>
> > current code looks like the following:
>
> > <table datasrc=#pics>
> > <tr>
> > <td>
> > <a href=span datafld=fullsize>
> > <img src=span datafld=preview></img>
> > </a>
> > </td>
> > <td>
> > ftp://62.47.xx.xx//<span datafld=fullsize>
> > </td>
> > </tr>
> > </table>
>
> > Now the question:
> > How can I modify the hyperlink in the first column to be like the text
in
> > the second column?
> > If I put the text 'ftp://62.47...' in front of the 'span ...' (like in
> > the second column) it is ignored.
>
> > Can anybody help me with that?
>
> > thx!
>
> > Mike
>
>
> it would be ftp://62.62.62.62/ not with the // as you show it unless
that's
> a typo here.
>
> not sure, but a php script might be able to allow use of something like
> ftp://62.62.var1.var2/
> but doing so would require the ip's to be absolutely static.
>
>
----------------------------------------------------------------------------
---
Hi!
Even if I use a static ip (such as 62.62.62.62 for example) it does not
work.
If I try to change the link from
<td>
<a href=span datafld=fullsize>
<img src=span datafld=preview></img>
</a>
</td>
<td>
ftp://62.62.62.62//<span datafld=fullsize>
</td>
to
<td>
<a href=ftp://62.62.62.62//<span datafld=fullsize>
<img src=span datafld=preview></img>
</a>
</td>
<td>
ftp://62.62.62.62//<span datafld=fullsize>
</td>
it is just ignored! Why is that so?