Hi,
I made a website for someone who has free Windows space without PHP support, so I have to convert the PHP script for the guestbook to ASP.
This is the code :
<?php
$file = fopen(“guestbook.xml”, “w+”) or die(“Can’t open XML file”);
$xmlString = $HTTP_RAW_POST_DATA;
if(!fwrite($file, $xmlString)){
print “Error writing to XML-file”;
}
print $xmlString."
";
fclose($file);
?>
Can anybody help me with this?
Regards,