Jump to content

Do I need Value in my <option>??


doubledee

Recommended Posts

Do I need to add value to this select statement?

 

		
<select id="expYear" name="expYear">
<option></option>
<option>2011</option>
<option>2012</option>
<option>2013</option>
<option>2014</option>
<option>2015</option>
<option>2016</option>
<option>2017</option>
<option>2018</option>
<option>2019</option>
<option>2020</option>
</select>

 

 

 

Debbie

 

 

Link to comment
Share on other sites

Why not build the field dynamically, as long as you're going to edit it anyhow. . .

 

$year = range( 2011, 2020 );
echo "<select id=\"expYear\" name=\"expYear\">\n
<option value=\"\"></option>\n";
foreach( $year as $v ) {
     echo "<option value=\"$v\">$v</option>\n";
}
echo '</select>';

Link to comment
Share on other sites

Why not build the field dynamically, as long as you're going to edit it anyhow. . .

 

$year = range( 2011, 2020 );
echo "<select id=\"expYear\" name=\"expYear\">\n
<option value=\"\"></option>\n";
foreach( $year as $v ) {
     echo "<option value=\"$v\">$v</option>\n";
}
echo '</select>';

 

Since you suggested turning my static HTML into dynamic PHP...

 

How can I retain the option that the user chose when my form reloads?

 

(e.g. If the user chose "04" under "Month" and my form reloads, then "Month" is blank.)

 

 

Debbie

 

 

Link to comment
Share on other sites

Just check for the value in the $_POST array and compare it to the value for the field. If they match, echo 'selected="selected"'.

$year = range( 2011, 2020 );
echo "<select id=\"expYear\" name=\"expYear\">\n
<option value=\"\"></option>\n";
foreach( $year as $v ) {
     $selected = (!empty($_POST['expYear']) && $_POST['expYear'] == $v ) ?  'selected="selected"' : '';
     echo "<option value=\"$v\" $selected>$v</option>\n";
}
echo '</select>';

Link to comment
Share on other sites

Just check for the value in the $_POST array and compare it to the value for the field. If they match, echo 'selected="selected"'.

$year = range( 2011, 2020 );
echo "<select id=\"expYear\" name=\"expYear\">\n
<option value=\"\"></option>\n";
foreach( $year as $v ) {
     $selected = (!empty($_POST['expYear']) && $_POST['expYear'] == $v ) ?  'selected="selected"' : '';
     echo "<option value=\"$v\" $selected>$v</option>\n";
}
echo '</select>';

 

 

Awesome!!

 

Just what I needed, and without using JavaScript or Cookies or Sessions! :thumb-up:

 

Thanks,

 

 

 

Debbie

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.