base de datos

parent 7afc8eba
...@@ -85,31 +85,44 @@ $conn->close();*/ ...@@ -85,31 +85,44 @@ $conn->close();*/
<datalist id="Escuelas"> <datalist id="Escuelas">
<?php <?php
while($row = $result1->fetch_assoc()) { while($row = $result1->fetch_assoc()) {
echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).'</option>'; echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).' <br>de '.utf8_encode($row["C_NOM_LOC"]).'</option>';
//echo '<option value="'.utf8_encode($row["NOMBRECT"]).'">de '.utf8_encode($row["C_NOM_LOC"]).' <br>clave: '.utf8_encode($row["CV_CCT"]).'</option>'; //echo '<option value="'.utf8_encode($row["NOMBRECT"]).'">de '.utf8_encode($row["C_NOM_LOC"]).' <br>clave: '.utf8_encode($row["CV_CCT"]).'</option>';
} }
while($row = $result2->fetch_assoc()) { while($row = $result2->fetch_assoc()) {
echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).'</option>'; echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).' <br>de '.utf8_encode($row["C_NOM_LOC"]).'</option>';
} }
while($row = $result3->fetch_assoc()) { while($row = $result3->fetch_assoc()) {
echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).'</option>'; echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).' <br>de '.utf8_encode($row["C_NOM_LOC"]).'</option>';
} }
while($row = $result4->fetch_assoc()) { while($row = $result4->fetch_assoc()) {
echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).'</option>'; echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).' <br>de '.utf8_encode($row["C_NOM_LOC"]).'</option>';
} }
while($row = $result5->fetch_assoc()) { while($row = $result5->fetch_assoc()) {
echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).'</option>'; //echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).'</option>';
//echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).' <br>de '.utf8_encode($row["C_NOM_LOC"]).'</option>'; echo '<option value="'.utf8_encode($row["CV_CCT"]).'">'.utf8_encode($row["NOMBRECT"]).' <br>de '.utf8_encode($row["C_NOM_LOC"]).'</option>';
} }
?> ?>
</datalist> </datalist>
<div class="mt-4">
<div class="d-flex text-center justify-content-center links" id="titulo1">
</div>
</div>
<div class="mt-4"> <div class="mt-4">
<div class="d-flex text-center justify-content-center links"> <div class="d-flex text-center justify-content-center links">
<h1 id="nombre_escuela"></h1> <h1 id="nombre_escuela"></h1>
</div> </div>
</div> </div>
<div class="mt-4">
<div class="d-flex text-center justify-content-center links" id="titulo2">
</div>
</div>
<div class="mt-4">
<div class="d-flex text-center justify-content-center links">
<h3 id="clave"></h3>
</div>
</div>
...@@ -135,7 +148,15 @@ $conn->close();*/ ...@@ -135,7 +148,15 @@ $conn->close();*/
var lastword = valor.split(" ").pop(); var lastword = valor.split(" ").pop();
document.getElementById('input_escuela').value=valor; document.getElementById('input_escuela').value=valor;
$('#nombre_escuela').empty(); $('#nombre_escuela').empty();
$('#nombre_escuela').append(valor); $('#clave').empty();
$('#titulo1').empty();
$('#titulo2').empty();
var porciones = valor.split('de ');
$('#nombre_escuela').append(porciones[0]);
$('#titulo1').append('<h1>Escuela: </h1>');
$('#titulo2').append('<h3>Localidad:</h3>');
$('#clave').append(porciones[1]);
$.post("ajax_post.php", $.post("ajax_post.php",
{ {
......
...@@ -5,8 +5,13 @@ ...@@ -5,8 +5,13 @@
<?php <?php
session_start(); session_start();
if (isset($_POST['escuela'])) { if (isset($_POST['escuela'])) {
$_SESSION["escuela"] = $_POST['escuela']; $arr = explode("de ", $_POST['escuela']);
$_SESSION["escuela"] = $arr[0];
$_SESSION["localidad"]=$arr[1];
$_SESSION["clave_escuela"] = $_POST['clave_escuela']; $_SESSION["clave_escuela"] = $_POST['clave_escuela'];
// $porciones = explode("de ", $_POST['escuela']);
// var_dump($porciones);
} }
?> ?>
<!DOCTYPE html> <!DOCTYPE html>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment