The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
put select in selected mode
#1
Hi Everybody,

Can someone give me a little example to how to put a field select like 'selected' mode when I return of a post-back?

Thanks

  Reply
#2
Can you explain a little more?
  Reply
#3
i presume you want to be able to have a select option as selected ? try something like this:

<pre>
Code:
<select id="recaptcha" class="form-control" name="recaptcha">
    <option value="1" <?php if($settings->recaptcha==1) echo 'selected="selected"'; ?> >Yes</option>
    <option value="0" <?php if($settings->recaptcha==0) echo 'selected="selected"'; ?> >No</option>
</select>
</pre>


hope that helps
  Reply
#4
Hi Everybody,

First of all thank you for yours helps.

Like Firestorm suggested, I put this in my loop to make the options of my select:

<option value="<?=$u->sg_dom;?>" <?php echo ( Input::get('fg_familia_localizada')==$u->sg_dom ? 'selected' : '');?> > <?=$u->ds_dom;?> </option>

When I back from POSTBACK, always mantain the last selected value

It's work well.

Thanks
  Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)