I am trying to add a simple PayPal button to a website. What I am wanted to do is set up the button to include \"options\" that need to be selected. This is not a problem, I
in php you can add this hidden input in your button
<INPUT TYPE="hidden" NAME="return" value="<?php echo 'mydomain.com/complete.php?option='.$theoption ?>">
where $theoption is the value of theoption that you want to be appended on the return url. Take note that you have to disable payment review so that paypal will automatically redirect back to you website