PDA

View Full Version : cgi Link Doesn't Read Correctly


Tsost
07-26-2005, 01:19 AM
In a cgi page I've added a link to the previous (html) page, which is called counterform.html, however when I look at this cgi page online and put the cursor over the link it says unterform.html. Why, and how do I rectify this?

Tsost


<a href=\"\/\counterform.html\">BACK</a></font></div></td></tr></table></center>\n";

mlseim
07-26-2005, 03:06 AM
Single quotes are fine too ...

<a href='counterform.html'>BACK</a></font></div></td></tr></table></center>\n";

Tsost
07-28-2005, 12:21 AM
Thanks