Thanks for your suggestion, I almost
had this worked out from what you suggested when I musst have changed something and now I cannot get this back where it should be, for example the submitting page looks like:
<form method="post" action="....../order.php">
<input type="hidden" name="artist" value="Artist Name">
<input type="hidden" name="title" value="This is the book title">
<input type="hidden" name="itemnumber" value="DYP-1105">
<input type="submit" name="Submit" value="Order Now">
</form>
This submits to order.php which has a code
snippet of:
<td width=295>
<input type="hidden" name="title" value="$title">
</td>
where the title should appear.
I've tried doing:
print("<input type=hidden name=title value=$title>\n");
with no luck either.
I thought I had this worked out, but must
have made some simple change I cannot
detect even though I've tried all the
combinations I can think of.
Your help is much appreciated, thanks!