本文整理匯總了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));