Hello folks..
Have written a simple script that should rendor the users favorites to the screen using php,but for some reason it's not working!
However from a look at an asp/vb implementation of this script it looks like the posting may be in binary as there is a binary to string conversion function used.
http://www.pstruh.cz/util/fav/favie5.asp?S=1
Can anyone offer any guidance here....
thanks very much
paul
<?
while(list($key, $value) = each($HTTP_POST_VARS)) {
echo "$key = $value<BR>";
}
?>
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<FORM action="javascript:{window.external.ImportExportFavorites(0,document.location.href);window.location.reload();}" METHOD="post">
<INPUT TYPE="SUBMIT" value="Export">
</FORM>
<a href=javascript:{window.external.ImportExportFavorites(0,document.location.href);window.location.reload();}>Export</a>
</BODY>
</HTML>