Help with FP "variables"?

R

rsimpson505

The "mailto:" hyperlink to Webmaster is scattered over several pages on
my site.
e.g.
<a href="mailto:[email protected]">Webmaster</a>
I want to be able to easily change the email address [email protected] if the
Webmaster changes, and that in every instance.
I am thinking of:
<a href="mailto:wm_email">Webmaster</a>
where somehow the value of wm_email is changed in one place (i.e. is a
variable).
I have tried using Web Component / Substituion for this but this just
displays the value after HTML interpretation; I need it before.

Is there a way to achieve this is standard FP2003 (no scripts)?
 
J

Jim Fitzgerald

Since you are the webmaster, why don't you use a simple "Edit/Replace" in the
code view, and choose all pages in the web?

Jim Fitzgerald
 
C

Chuck Davis

The "mailto:" hyperlink to Webmaster is scattered over several pages on
my site.
e.g.
<a href="mailto:[email protected]">Webmaster</a>
I want to be able to easily change the email address [email protected] if the
Webmaster changes, and that in every instance.
I am thinking of:
<a href="mailto:wm_email">Webmaster</a>
where somehow the value of wm_email is changed in one place (i.e. is a
variable).
I have tried using Web Component / Substituion for this but this just
displays the value after HTML interpretation; I need it before.

Is there a way to achieve this is standard FP2003 (no scripts)?
I would stronly suggest that you use a simple form on your site. E-mail
addresses are picked up by the spammers. If you wnat the form contents
shipped to the webmaster, you can certainly do that in only one place.
 
Top