本文整理匯總了PHP中clsCNUsu::ListadoPoblacionesOficinas方法的典型用法代碼示例。如果您正苦於以下問題:PHP clsCNUsu::ListadoPoblacionesOficinas方法的具體用法?PHP clsCNUsu::ListadoPoblacionesOficinas怎麽用?PHP clsCNUsu::ListadoPoblacionesOficinas使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類clsCNUsu
的用法示例。
在下文中一共展示了clsCNUsu::ListadoPoblacionesOficinas方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
<td width="954">
<table align="center" border="0" width="954">
<tr></tr>
<tr><td>
<h3 align="center" color="#FFCC66"><font size="3px">Consulta de Oficinas</font></h3>
<form name="form1" action="../vista/usuoficmodiflist.php" method="get">
<label class="filtroTexto" align="center" onclick="onOff_filtro(document.getElementById('filtros'));">Filtros</label>
<div id="filtros" style="display: none;">
<table class="filtro" align="center" border="0" width="350">
<tr>
<td colspan="2"><div align="left"><b><I>Población:</I></b></div></td>
<td align="left" colspan = "3">
<?php
//extraigo el listado de departamentos
$listado = $clsCNUsu->ListadoPoblacionesOficinas();
$html = '<select name="strPoblacion" class="textbox1">';
$html = $html . '<option value=""></option>';
if (is_array($listado)) {
for ($i = 0; $i < count($listado); $i++) {
$html = $html . '<option value="' . $listado[$i]['strPoblacion'] . '">' . $listado[$i]['strPoblacion'] . '</option>';
}
}
$html = $html . '</select>';
echo $html;
?>
</td>
</tr>
<tr>
<td colspan="2"><div align="left"><b><I>Provincia:</I></b></div></td>