Sample script I have here is this...
--snip-- <a href="http://www.yourserver.com/yourpage.htm#RowNum3" target="doc">Jump</a>
<iframe id="doc" name="doc" src="http://www.yourserver.com/yourpage.htm"></iframe> --snip--
Where yourpage.htm have this "<a href='#' name='RowNum3'>blah blah</a>"....
So, question here is how do I pass the post string to the Iframe, like "&color=red" in this example, this example doesn't work... The iframe is the target method....
--snip-- <a href=http://www.yourserver.com/yourpage.htm#RowNum3&color=red target="doc">Jump</a> --snip--
The anchor goes after the query string, like so...
<a href=http://www.yourserver.com/yourpage.htm?color=red#RowNum3 target="doc">Jump</a>
-- Stuart
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php