當前位置: 首頁>>代碼示例>>PHP>>正文


PHP datos::PoblarConsultaProfesorCursoSelAll方法代碼示例

本文整理匯總了PHP中datos::PoblarConsultaProfesorCursoSelAll方法的典型用法代碼示例。如果您正苦於以下問題:PHP datos::PoblarConsultaProfesorCursoSelAll方法的具體用法?PHP datos::PoblarConsultaProfesorCursoSelAll怎麽用?PHP datos::PoblarConsultaProfesorCursoSelAll使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在datos的用法示例。


在下文中一共展示了datos::PoblarConsultaProfesorCursoSelAll方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: die

INNER JOIN anio f ON f.CodAnio=b.CodAnio
INNER JOIN seccion g ON g.CodSeccion=b.CodSeccion
INNER JOIN nivel h ON h.CodNivel=d.CodNivel
WHERE b.CodAnio='".$_POST['cboAnio']."'
AND h.CodNivel='".$_POST['cboNivel']."'
AND (b.CodGrado='".$_POST['cboGrado']."' OR ''='".$_POST['cboGrado']."')
AND (b.CodSeccion='".$_POST['cboSeccion']."' OR ''='".$_POST['cboSeccion']."')
GROUP by f.NombreAnio, h.NombreNivel";
$rsCabecera = mysql_query($query_rsCabecera, $cn) or die(mysql_error());
$row_rsCabecera = mysql_fetch_assoc($rsCabecera);
$totalRows_rsCabecera = mysql_num_rows($rsCabecera);

$objDatos=new datos();

$rsProfesorCurso=$objDatos->ObtenerConsultaProfesorCursoSelAll($_POST['cboAnio'],$_POST['cboNivel'],$_POST['cboGrado'],$_POST['cboSeccion']);
$rowProfesorCurso=$objDatos->PoblarConsultaProfesorCursoSelAll($rsProfesorCurso);

$pdf =& new Cezpdf('a4');
$pdf->selectFont('fonts/helvetica.afm');
$datacreator = array (
                    'Title'=>'Ejemplo PDF',
                    'Author'=>'rcardenas',
                    'Subject'=>'PDF con Tablas',
                    'Creator'=>'rcardenass@hotmail.com',
                    'Producer'=>'http://'
                    );
$pdf->addInfo($datacreator);

do{
	$data[] = array('Codigo'=>$rowProfesorCurso['CodProfesorCurso'], 'GradoSeccion'=>$rowProfesorCurso['GradoSeccion'], 'Profesor'=>$rowProfesorCurso['Profesor'], 'NombreCurso'=>$rowProfesorCurso['NombreCurso']);
}while($rowProfesorCurso=$objDatos->PoblarConsultaProfesorCursoSelAll($rsProfesorCurso));
開發者ID:rcardenass,項目名稱:Escuela,代碼行數:31,代碼來源:repprofesorcurso.php


注:本文中的datos::PoblarConsultaProfesorCursoSelAll方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。