本文整理汇总了PHP中Display::get_numeric_options方法的典型用法代码示例。如果您正苦于以下问题:PHP Display::get_numeric_options方法的具体用法?PHP Display::get_numeric_options怎么用?PHP Display::get_numeric_options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Display
的用法示例。
在下文中一共展示了Display::get_numeric_options方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_lang
<tr>
<td width="40%" align="center">
<b><?php
echo get_lang('UserGroupList');
?>
</b>
<br/><br/>
<?php
echo get_lang('FirstLetter');
?>
:
<select name="first_letter_user_group" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
<option value="">--</option>
<?php
echo Display::get_alphabet_options($firstLetterUserGroup);
echo Display::get_numeric_options(0, 9, $firstLetterUserGroup);
?>
</select>
</td>
<td width="20%"> </td>
<td width="40%" align="center">
<b><?php
echo get_lang('URLList');
?>
:</b>
</td>
</tr>
<tr>
<td width="40%" align="center">
<select name="user_group_list[]" multiple="multiple" size="20" style="width:400px;">
<?php
示例2: get_lang
:</b></td>
</tr>
<?php
if ($add_type == 'multiple') {
?>
<tr><td width="45%" align="center">
<?php
echo get_lang('FirstLetterCourse');
?>
:
<select name="firstLetterCourse" onchange = "xajax_search_courses(this.value,'multiple')">
<option value="%">--</option>
<?php
echo Display::get_alphabet_options();
echo Display::get_numeric_options(0, 9, '');
?>
</select>
</td>
<td> </td></tr>
<?php
}
?>
<tr>
<td width="45%" align="center">
<?php
if (!($add_type == 'multiple')) {
?>
<input type="text" id="course_to_add" onkeyup="xajax_search_courses(this.value,'single')" />
<div id="ajax_list_courses_single"></div>
<?php
示例3: get_lang
<tr>
<td width="40%" align="center">
<b><?php
echo get_lang('CourseList');
?>
</b>
<br/><br/>
<?php
echo get_lang('FirstLetterCourse');
?>
:
<select name="first_letter_course" onchange="javascript:document.formulaire.form_sent.value='2'; document.formulaire.submit();">
<option value="">--</option>
<?php
echo Display::get_alphabet_options($first_letter_course);
echo Display::get_numeric_options(0, 9, $first_letter_course);
?>
</select>
</td>
<td width="20%"> </td>
<td width="40%" align="center">
<b><?php
echo get_lang('URLList');
?>
:</b>
</td>
</tr>
<tr>
<td width="40%" align="center">
<select name="course_list[]" multiple="multiple" size="20" style="width:400px;">
<?php