can anyone see why the favorite information posted to the server using this script below would not be rendered to the screen on a reload ?
paul
<?
while(list($key, $value) = each($HTTP_POST_VARS))
{
echo "$key = $value<BR>";
}
?>
<HTML>
<HEAD>
<TITLE></TITLE>
<FORM action="javascript:{external.ImportExportFavorites(0,'http://www.ownarea.com/fav.php');}" METHOD="post">
<INPUT TYPE="SUBMIT" value="Export">
</FORM>
<a href=javascript:{external.ImportExportFavorites(false,'http://www.ownarea.com/fav.php');window.location.reload();}>Export</a>
</HEAD>
<BODY></BODY>
</HTML>