I have a drop down menu on a form which when the option is selected and submitted is passed onto another form on another web site using cURL:
<?php
foreach ($sites as $site) {
$selected = (($site == @$_POST['site']) ? ' selected="selected"' : '');
echo '<option value="',$site,'"',$selected,'>',$site,'</option>';
}
?>
now what i need to do is remove the drop down menu as i want to hard code one option that connot change but will still be passed onto the other form on the other web site, any ideas as to how i would go about doing this?
cheers
NCC1701