I have combo boxes on a form, much like the FONT and SIZE boxes in this form, and I'm not sure how to enter a default value for the combo box, and have the rest of the data pull from the database.
Here is what I have, and it pulls the data fine, but enters the first value into the combo box. And I want to say "Please select a Job Number"
if ($var_job = mysql_query($job_query)){
while ($array_job = mysql_fetch_array($var_job) ) {
echo '<option value="'.$array_job['Job_Number'].'">'.$array_job['Job_Number'].'</option>'.
"\r\n";
}}