[snip]
          <input type="hidden" name="thisID" value="<?php echo
$row_tjContactFormData['ID']; ?>">
          <SELECT name="hired">
          <option value="YES" <?php
if($row_tjContactFormData['hired']=="YES") { echo "Selected"; }
?>>YES</option>
          <option value="NO" <?php if($row_tjContactFormData['hired']=="NO")
{ echo "Selected"; } ?>>NO</option>
          <option value="NULL" <?php
if($row_tjContactFormData['hired']==NULL) { echo "Selected"; } ?>>On
Hold</option>
          </SELECT>

But none of my Queries are working. What I want to do is, when the form is
submitted, it should just simply update the Œhired¹ field with whatever
value has been selected for that row in the Combo Box.
[/snip]

Can you post the query you are using? 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to