[eluser]Unknown[/eluser]
Having an issue with sessions in IE still. When using a calendar date range search (select start date on calendar, then select end date on calendar and click search) IE throws a "webpage has expired" error. This happens most of the time but not always. We're using a drop down menu as well. Note that this error does not happen in Firefox.
Here's the form minus the calendar [removed]
Code:
<form action="#" id="MainForm" method="post" action="<?php echo base_url()?>/control/users/">
<input type="hidden" name="date_1" value="<?php echo ($date1_mini)?$date1_mini:''?>" id="f_date_d1" />
<input type="hidden" name="date_2" value="<?php echo ($date2_mini)?$date2_mini:''?>" id="f_date_d2" />
<p>Registred between:
<span style="background-color: #ff8; cursor: default;"
><?php echo (isset($date1))?$date1:'(click to open date selector)'?></span> and
<span style="background-color: #ff8; cursor: default;"
><?php echo (isset($date2))?$date2:'(click to open date selector)'?></span>
<br /><br /></p>
Account type: <select name="acc_type">
<option value="0">Any</option>
<option value="1" <? if($acc_type == 1): ?>selected<? endif; ?>>Silver</option>
<option value="2" <? if($acc_type == 2): ?>selected<? endif; ?>>Gold</option>
<option value="3" <? if($acc_type == 3): ?>selected<? endif; ?>>Supreme</option>
</select><br /><br />
</form>
Users found: <b><?php echo $users_total?></b><br /><br />
<a ><b>Search</b></a><br /><br />
</td>
</tr>
<tr><td class="separ"></td></tr><tr><td class="se6"></td></tr>
<tr>
<td>
<table class="adn">
<tr class="lineb">
<td align="left" width="100%">User</td>
</tr>
<?php foreach ($users as $row): ?>
<tr><td colspan="0" class="separ"></td></tr> <tr class="liney">
<td align="left"><a >id?>"><?php echo $row->login?></a></td>
</tr>
<?php endforeach; ?>
</table>