The Code
This is just standard HTML, so create a file called
remote_guide.html
with the following
form:
<html>
<body>
<form method=post action="http://amazon.com/exec/obidos/guide-preview/">
<!-- Visible Form Fields -->
Title:<br>
<input type=text name="guide.title" size=50 value=""><br><br>
Qualifications:<br>
<input type=text name="guide.qualifications" size=50 value=""><br><br>
Guide:<br>
<textarea name="guide.text" cols=80 rows=10></textarea><br><br>
<!-- Hidden Form Fields -->
<input type=hidden name="guide.author" value="insert Amazon ID">
<input type=hidden name="guide.format.asin-link" value="<a href="&return;
/exec/obidos/ASIN/%s/102-4471056-3284920">'%s'</A>">
<input type=hidden name="guide.format.heading-link" value=&return;
"<a href="#guide.heading.%03d"><b class=sans>%s</b></a>">
<input type="submit" value="Add Guide">
</form>
</body>
</html>
The only changes to Amazon's form are the addition of the full URL in
the form's action attribute, and of your Amazon
ID
to the guide.author hidden field.