I kindly ask for your input in how to send a variable via URL to an other PHP site:
<form action="deny.php" method="get">
<div align="left"></div>
<p><span class="style13" style="height: 23px;">
<select name="deny" class="style28" style="width: 320px">
<option value="Select" selected="selected">Select</option>
<option value="Price">Too expensive</option>
<option value="Agency">Other Agency</option>
</select>
</span></p>
<p><span class="style13" style="height: 23px;">
<input type="hidden" name="id" value=<? echo $id; ?> />
</span> </p>
<p>
<? echo '<td><a href="deny.php?submit='.$id.'&deny='.$_GET['deny'].'">Send Feedback</a></td>'; ?>
</p>
</form>
$id is correct, but $deny is empty
I even tried with $deny (instead of $_GET['deny']) and $_POST[deny] - but $deny is always empty. (can be controlled in the link)
Thanks for your suggestions!
BR,
Stefan