本文整理汇总了PHP中mostrar_curso函数的典型用法代码示例。如果您正苦于以下问题:PHP mostrar_curso函数的具体用法?PHP mostrar_curso怎么用?PHP mostrar_curso使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了mostrar_curso函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: obtenerCursos
function obtenerCursos()
{
$SQL = "SELECT * FROM " . $this->schema . "curso";
$result = DBQuery($SQL, $this->dbh);
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$cursos[$row['curso']] = $row;
$cursos[$row['curso']]['nombre_curso'] = mostrar_curso($row['curso']);
$cursos[$row['curso']]['nombre_curso_completo'] = mostrar_curso($row['curso'], true);
}
return $cursos;
}
示例2: obtenerAlumnosBusqueda
function obtenerAlumnosBusqueda($dato, $matricula = null, $curso = null)
{
$alumnos = null;
$and = "";
if ($matricula) {
$and = "AND ultima_matricula = '{$matricula}'";
}
if ($curso) {
$andCurso = "AND curso = '{$curso}'";
}
$SQL = "SELECT * FROM alumnos WHERE ( CONCAT(nombres, ' ', apellidop, ' ', apellidom) LIKE '%{$dato}%' OR rut LIKE '%{$dato}%' ) {$and} {$andCurso}\r\n ORDER BY curso";
$result = DBQuery($SQL, $this->dbh);
while ($row = DBFetchArray($result)) {
$alumnos[$row['rut']] = $row;
$alumnos[$row['rut']]['nombre_curso'] = mostrar_curso($row['curso'], true);
}
return $alumnos;
}
示例3: foreach
<td align="center">
<a href="Javascript:agregar_elemento();" class="fontlinkred" title="Agregar Egreso">inscribir>></a>
<br><a href="Javascript:eliminar_elemento();" class="fontlinkred" title="Quitar Egreso">desincribir<<</a>
</td>
<td align="center" id="td_form_egresos" class="tableborder1">CURSOS EN EL CICLO
<select id="elementos_seleccionados" name="elementos_seleccionados" multiple="true" size="10" style="width:300px;height:150px;color:000066;background-color:blank;font-size:12px;font-family:courier;">
<?//dpr($ciclos[$_SESSION['aux_ciclo']]['cursos']);
if (count($ciclos[$_SESSION['aux_ciclo']]['cursos'])>0)
foreach($ciclos[$_SESSION['aux_ciclo']]['cursos'] AS $curso_con => $curso_con_data):?>
<option values="<?php
echo $curso_con_data;
?>
" id="<?php
echo $curso_con_data;
?>
"><?php
echo mostrar_curso($curso_con_data, true);
?>
</option>
<?endforeach?>
</select>
</td>
</tr>
</form>
</table>
</div>
<div id="footer">
Sociedad Educacional Osorio Zamora © 2007, Contacto: <a href="mailto:edgar.sanchez@dor.cl">Webmaster</a>
</div>
</div>
</body>
示例4: moveLocationFast
$criteria->find($alumnoGuardar);
$alumnoGuardar->lista = $i++;
$criteria->merge($alumnoGuardar);
}
moveLocationFast("UTP-listaCurso.php?curso=" . $curso . "&exito=exito");
}
}
$orden_alfabetico = false;
if (isset($_POST['buscar'])) {
if ($_POST['buscar'] == "orden_alfabetico") {
$smarty->assign("warning", "Para que la lista quede guardada debe presionar el botón guardar");
$orden_alfabetico = true;
}
}
$criteria->createCriteria($alumno);
$criteria->add(Restrictions::eq("curso", $curso));
if (!$orden_alfabetico) {
$criteria->addOrder(Order::asc("lista"));
} else {
$criteria->addOrder(Order::asc("apellidop, apellidom, nombres"));
}
$listAlumnos = $criteria->lista();
$smarty->assign("listAlumnos", $listAlumnos);
$smarty->assign("titulo_principal", mostrar_curso($curso, true));
$smarty->assign("title", "UTP: Modificar Cursos");
$smarty->assign("titulo_secundario", "Listado Alumnos");
$menu[] = array("img" => "", "url" => "modificar_cursos.php", "text" => "Volver", "title" => "Volver", "alt" => "Volver");
$menu[] = array("img" => "", "url" => "#", "text" => "Lista Alumnos", "title" => "Lista Alumnos", "alt" => "Lista Alumnos", "id" => "", "class" => "current_page_item");
$smarty->assign("menu", $menu);
$smarty->assign("file_content", "utp/UTP-listaCurso.tpl");
$smarty->display('layout/main.tpl');
示例5: session_destroy
session_destroy();
moveLocation("../ingreso.php", 0, 2);
}
//dpr($_SESSION);
/***********************************
Librería para los templates
***********************************/
require "../smartyLib/Smarty.class.php";
$smarty = new Smarty();
smartyTemplate($smarty, "../");
$class_curso = new curso();
$cursos = $class_curso->obtenerCursos();
//dpr($cursos);
$select_curso = null;
if (count($cursos) > 0) {
foreach ($cursos as $curso => $datos_curso) {
$vals_curso[] = $curso;
$output_curso[] = mostrar_curso($curso, true);
if (isset($_SESSION['variables_aux']->curso) && $_SESSION['variables_aux']->curso == $curso) {
$select_curso = $curso;
}
}
}
$smarty->assign("vals_curso", $vals_curso);
$smarty->assign("output_curso", $output_curso);
$smarty->assign("select_curso", $select_curso);
$smarty->assign("file_content", "PROF-cursos.tpl");
$smarty->assign("titulo_principal", "Profesores");
$smarty->assign("file_sidebar", "SIDEBAR-profesoresCursos.tpl");
$smarty->assign("titulo_secundario", "Cursos [" . $_SESSION['base_datos']->anio . "]");
$smarty->assign("title", "Profesores");
示例6: DBConnect
<p id="noImprimir"><a href="javascript:window.print()"><img src="images/impresora.gif" width="56" height="87"><br />
Imprimir</a></p>
<p class="Estilo1">
<?php
DBConnect($dbh);
$sql44 = 'SELECT * FROM `alumnos` WHERE rut =' . "'" . $rut . "'";
$sql45 = 'SELECT * FROM `mensualidades` WHERE rut =' . "'" . $rut . "'";
$result44 = mysql_query($sql44, $dbh);
$row44 = mysql_fetch_array($result44);
$result45 = mysql_query($sql45, $dbh);
$row45 = mysql_fetch_array($result45);
$nombres = $row44["nombres"];
$apellidop = $row44["apellidop"];
$curso = $row44["curso"];
$curso = mostrar_curso($curso);
$desc = $row45["descuentos"];
$mensualidad = $row45["mensualidad"];
$sql46 = 'SELECT * FROM `apoderados` WHERE rut =' . "'" . $rut . "'";
$result46 = mysql_query($sql46, $dbh);
$row46 = mysql_fetch_array($result46);
$nombreapo = $row46["nombre"];
echo "<br /><br /><br />{$fechadia} / {$fechames} / {$fechaanio}";
?>
<br /><br /><br /><br /><br />
</p>
<p class="Estilo1">
<?php
echo "{$nombreapo}";
?>
示例7: PDF
$pdf = new PDF();
$pdf->FPDF('P', 'mm', 'Legal');
DBConnect($dbh);
if (isset($_GET['rut'])) {
$sql = 'SELECT * FROM `alumnos` where `rut`=' . "'" . $rut . "'";
} else {
$sql = "SELECT * FROM `alumnos` where ultima_matricula='{$anio}' AND curso = '{$_GET['curso']}'";
}
$result = mysql_query($sql, $dbh);
while ($row = mysql_fetch_array($result)) {
$rut = $row['rut'];
$apellidop = $row["apellidop"];
$apellidom = $row["apellidom"];
$nombres = $row["nombres"];
$curso = $row["curso"];
$curso = mostrar_curso(promocionarCurso($curso));
$pdf->AddPage();
$beca_alumno = $class_arancel->obtenerBeca($colegio_ID, $rut, $anio_matricula);
$alumno = $apellidop . " " . $apellidom . " " . $nombres;
$sql2 = 'SELECT * FROM `apoderados` WHERE `rut`=' . "'" . $rut . "';";
$result2 = mysql_query($sql2, $dbh);
$row2 = mysql_fetch_array($result2);
$apoderado = $row2["nombre"];
$sql3 = 'SELECT * FROM `mensualidades` WHERE `rut`=' . "'" . $rut . "';";
$result3 = mysql_query($sql3, $dbh);
$row3 = mysql_fetch_array($result3);
$mensualidad = $arancel['aran_monto'];
$descuento = $beca_alumno['beca_porcentaje'];
$descuento = $mensualidad * ($descuento / 100);
$total = $mensualidad - $descuento;
$mensualidad2 = number_format($mensualidad, 0, ",", ".");
示例8: mostrar_curso
<?headers("Profesores", "../../");?>
<body>
<div id="wrap">
<div id="header">
<table border="0" width="800">
<tr>
<td width="50%">
<h1><a href="#"><?php
echo $titulo_izq;
?>
</a></h1>
</td>
<td align="right" width="33%">
<h1><a href="#"><?php
echo mostrar_curso($titulo_der);
?>
</a> </h1>
</td>
<td align="right">
<img src="<?php
echo $path;
?>
/logo_chico.png">
</td>
</tr>
</table>
</div>
<div id="intro">
<table>
<tr>
<td align="center" width="100">
示例9: mostrar_curso
$pdf->Cell(0, 4, ' Reconocido Oficialmente por el Ministerio de Educación de la República de Chile según decreto Nº' . $_SESSION['colegio']->col_decreto . ' del año ' . $_SESSION['colegio']->col_anio . ' ', 0, 1, 'L');
$pdf->Cell(0, 4, ' Rol Base de Datos ' . $rbd, 0, 1, 'L');
$pdf->ln();
$apellidop = $row2["apellidop"];
$apellidom = $row2["apellidom"];
$nombres = $row2["nombres"];
$rut = $row2["rut"];
$fill = 1;
$pdf->SetFillColor(210);
$pdf->SetTextColor(0);
$pdf->Cell(30, 4, 'Alumno(a): ', 1, 0, 'R');
$pdf->Cell(0, 4, $apellidop . " " . $apellidom . " " . $nombres, 1, 1, 'L');
$pdf->Cell(30, 4, 'R.U.T. :', 1, 0, 'R');
$pdf->Cell(0, 4, $rut, 1, 1, 'L');
$pdf->Cell(30, 4, 'Curso :', 1, 0, 'R');
$curso2 = mostrar_curso($curso, true);
$pdf->Cell(0, 4, $curso2, 1, 1, 'L');
$pdf->Cell(30, 4, 'Profesor Jefe :', 1, 0, 'R');
$pdf->Cell(0, 4, $pjefe, 1, 1, 'L');
$pdf->ln();
$pdf->SetFont('Arial', 'B', 12);
//######################################## DESARROLLO ESCOLAR #############################
if ($periodo == "1S") {
$descPeriodo = " PRIMER SEMESTRE";
}
$pdf->Cell(0, 10, 'INFORME ESCOLAR' . $descPeriodo, 0, 1, 'C');
$pdf->SetFont('Times', '', 10);
$pdf->SetTextColor(0);
$sql4 = 'SELECT * FROM ' . $dataBase . '.ramos WHERE `curso` =' . "'" . $curso . "' ORDER BY num";
$result4 = mysql_query($sql4, $dbh);
$sql99 = 'SELECT * FROM ' . $dataBase . '.curso WHERE `curso` =' . "'" . $curso . "'";
示例10: validarAcceso
include_once "../class/class_curso.php";
validarAcceso(AuthUser::TIPO_UTP, "../");
/***********************************
Librería para los templates
***********************************/
require "../smartyLib/Smarty.class.php";
$smarty = new Smarty();
smartyTemplate($smarty, "../");
$class_curso = new curso();
$class_alumno = new alumno();
//dpr($_SESSION);
$_POST['curso'] = $_POST['curso'] ? $_POST['curso'] : $_SESSION['curso_seleccionado'];
$_SESSION['curso_seleccionado'] = $_POST['curso'];
$cursos = $class_curso->obtenerCursos();
if (count($cursos) > 0) {
foreach ($cursos as $curso => $datos_curso) {
$vals_curso[] = $curso;
$output_curso[] = mostrar_curso($curso);
if (isset($_POST['curso'])) {
if ($_POST['curso'] == $curso) {
$select_curso = $curso;
}
}
}
}
//dpr($_SESSION);
$smarty->assign("colegio", $_SESSION['colegio']->nombre);
$smarty->assign("path", $_SESSION['path']);
$smarty->assign("vals_curso", $vals_curso);
$smarty->assign("output_curso", $output_curso);
if (!isset($select_curso)) {
示例11: while
$aux = 10;
$contador = 0;
while ($row2 = mysql_fetch_array($result2)) {
$pdf->Image('../' . $_SESSION[path] . '/logo.jpg', 10, $aux, 15);
$rut = $row2["rut"];
$apellidop = $row2["apellidop"];
$apellidom = $row2["apellidom"];
$nombres = $row2["nombres"];
$sql3 = 'SELECT `pjefe` FROM `curso` WHERE curso =' . "'" . $a . "'";
$result3 = mysql_query($sql3, $dbh);
$row3 = mysql_fetch_array($result3);
$pjefe = $row3["pjefe"];
$pdf->SetFont('Times', '', 10);
$pdf->encabezado($x1);
$pdf->SetTextColor(1);
$curso = mostrar_curso($a);
$pdf->MultiCell(0, 5, 'Nombre Alumno: ' . $apellidop . " " . $apellidom . " " . $nombres . " - RUT: " . $rut . "\n Curso: " . $curso . " - Profesor Jefe:" . $pjefe, 1, 1);
$sql8 = 'SELECT * FROM `ramos` WHERE curso = ' . "'" . $a . "'" . ' ORDER BY num';
$result8 = mysql_query($sql8, $dbh);
while ($row8 = mysql_fetch_array($result8)) {
$nomramo = $row8["nombre"];
$sql = 'SELECT * FROM `notas` WHERE rut =' . "'" . $rut . "'" . 'AND ramo=' . "'" . $nomramo . "'";
$result = mysql_query($sql, $dbh);
while ($row = mysql_fetch_array($result)) {
$ramo = $row["ramo"];
$pdf->SetTextColor(1);
$pdf->SetFont('Arial', 'I', 6);
$pdf->Cell(70, 5, $ramo, 1);
for ($i = 16; $i <= 30; $i++) {
$pdf->SetFont('Arial', 'I', 8);
$n[$i] = $row["n{$i}"];
示例12: mostrar_curso
$pdf->ln();
$apellidop = $row2["apellidop"];
$apellidom = $row2["apellidom"];
$nombres = $row2["nombres"];
$rut = $row2["rut"];
$fill = 1;
//$pdf->SetTextColor(255);
$pdf->SetFillColor(210);
$pdf->Cell(0, 5, 'Datos Alumno:', 1, 1, 1, $fill);
$pdf->SetTextColor(0);
$pdf->Cell(30, 4, 'Alumno(a): ', 1, 0, 'R');
$pdf->Cell(0, 4, $apellidop . " " . $apellidom . " " . $nombres, 1, 1, 'L');
$pdf->Cell(30, 4, 'R.U.T. :', 1, 0, 'R');
$pdf->Cell(0, 4, $rut, 1, 1, 'L');
$pdf->Cell(30, 4, 'Curso :', 1, 0, 'R');
$curso2 = mostrar_curso($curso);
$pdf->Cell(0, 4, $curso2, 1, 1, 'L');
$pdf->Cell(30, 4, 'Profesor Jefe :', 1, 0, 'R');
$pdf->Cell(0, 4, $pjefe, 1, 1, 'L');
$pdf->ln();
$pdf->SetFont('Arial', 'B', 12);
//######################################## DESARROLLO ESCOLAR #############################
$pdf->Cell(0, 10, 'DESARROLLO ESCOLAR', 0, 1, 'C');
$pdf->SetFont('Times', '', 10);
$pdf->SetTextColor(0);
$sql4 = 'SELECT * FROM `ramos` WHERE `curso` =' . "'" . $curso . "' ORDER BY num";
$result4 = mysql_query($sql4, $dbh);
$sql99 = 'SELECT * FROM `curso` WHERE `curso` =' . "'" . $curso . "'";
$result99 = mysql_query($sql99, $dbh);
$row99 = mysql_fetch_array($result99);
$programa = $row99["programa"];
示例13: foreach
foreach ($ramos as $nom_ramo => $datos_ramo) {
$pdf->RotatedText(100 + $x, $y, $nom_ramo, 30);
$x = $x + 7;
}
}
$pdf->SetTextColor(255, 0, 0);
$pdf->RotatedText(100 + $x, $y, "PROMEDIO FINAL", 30);
$pdf->SetTextColor(0, 0, 0);
$pdf->RotatedText(107 + $x, $y, "RELIGION", 30);
$pdf->RotatedText(114 + $x, $y, "ASISTENCIA %", 30);
$pdf->SetTextColor(0, 0, 0);
$pdf->SetFont('Arial', '', 16);
$pdf->Cell(15, 5, " ", 0, 0);
$pdf->Cell(20, 5, $titulo . " ", 0, 1);
$pdf->Cell(15, 5, " ", 0, 0);
$pdf->Cell(20, 5, mostrar_curso($curso, true), 0, 1);
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(15, 5, " ", 0, 0);
$pdf->Cell(20, 5, "PROFESOR JEFE: " . $datos_curso["pjefe"], 0);
$pdf->ln(15);
$i = 0;
foreach ($alumnos as $rut => $datos_alumno) {
$pdf->SetTextColor(0, 0, 0);
$pdf->SetFont('Arial', '', 6);
$pdf->Cell(5, 5, ++$i, 1);
$pdf->Cell(20, 5, $datos_alumno['dato_alumno']['apellidop'], 1);
$pdf->Cell(20, 5, $datos_alumno['dato_alumno']['apellidom'], 1);
$pdf->Cell(40, 5, $datos_alumno['dato_alumno']['nombres'], 1);
$pdf->Cell(15, 5, $rut, 1);
foreach ($ramos as $nom_ramo => $datos_ramo) {
$prom_alumnos[$rut]['ramos'][$nom_ramo][$periodo] < 4 ? $pdf->SetTextColor(255, 0, 0) : $pdf->SetTextColor(0, 0, 255);
示例14: mostrar_curso
$smarty->assign("colegio", $_SESSION['colegio']->nombre);
$smarty->assign("titulo_izq", "Nómina del Curso");
$smarty->assign("titulo_der", mostrar_curso($_GET['curso']));
$smarty->assign("path", $_SESSION['path']);
# FIN ENCABEZADO #
$curso = $_GET['curso'];
setHistoryGoBack("?curso=" . $curso);
$smarty->assign("curso", $curso);
$archivo_xls = "nomina_" . mostrar_curso($curso) . "_R" . rand() . ".xls";
$class_alumno = new alumno();
$alumnos = $class_alumno->obtenerAlumnos($curso, 1, false);
$i = 0;
if (count($alumnos) > 0) {
foreach ($alumnos as $rut => $datos_alumno) {
$indice_alumno[] = ++$i;
$rut_alumno[] = $rut;
$nombre_alumno[] = $datos_alumno['dato_alumno']['apellidop'] . " " . $datos_alumno['dato_alumno']['apellidom'] . " " . $datos_alumno['dato_alumno']['nombres'];
}
}
$smarty->assign("indice_alumno", $indice_alumno);
$smarty->assign("rut_alumno", $rut_alumno);
$smarty->assign("nombre_alumno", $nombre_alumno);
$smarty->assign("titulo_principal", mostrar_curso($curso));
$smarty->assign("nombreCurso", mostrar_curso($curso, TRUE));
$smarty->assign("titulo_secundario", "Nómina del curso");
$menu = menuProfesores();
$menu = array_merge($menu, array(array("img" => "../images/xls.png", "url" => "XLS-nomina.php?curso={$curso}", "text" => "Exportar a Excel", "title" => "Exportar a Excel", "alt" => "Exportar a Excel")));
$menu[] = array("img" => "img.jpg", "url" => "#", "text" => "Nómina", "title" => "Nómina " . mostrar_curso($curso), "alt" => "", "id" => "", "class" => "nomina");
$smarty->assign("menu", $menu);
$smarty->assign("file_content", "PROF-nomina.tpl");
$smarty->display('layout/main.tpl');
示例15: session_start
<?php
session_start();
include_once "../main_Lib.php";
include_once "../phpxls/phpxls.php";
include_once "../class/class_alumno.php";
$curso = $_GET['curso'];
$class_alumno = new alumno();
$alumnos = $class_alumno->obtenerAlumnos($curso, 1, false);
$xls = new phpxls();
$xls->outputXLS();
//$xls->image(URL.$_SESSION['path']."/logo.jpg", 83, 96);
$xls->title(mostrar_curso($curso, true));
$xls->beginTable(1);
$xls->setBGColor('gray');
$xls->setFontColor('white');
$xls->cell(30, 20, 'N°', 0, 'center');
$xls->cell(90, 20, 'RUT', 0, 'center');
$xls->cell(250, 20, 'NOMBRE', 1, 'center');
$xls->setBGColor('white');
$xls->setFontColor('black');
$i = 0;
if (count($alumnos) > 0) {
foreach ($alumnos as $rut => $datos_alumno) {
$nombre_completo = $datos_alumno['dato_alumno']['apellidop'] . " " . $datos_alumno['dato_alumno']['apellidom'] . " " . $datos_alumno['dato_alumno']['nombres'];
$xls->cell(30, 20, ++$i, 0, 'center');
$xls->cell(90, 20, $rut, 0);
$xls->cell(250, 20, $nombre_completo, 1);
}
}
$xls->endTable();