Commit c98a9b29 authored by Axel Tomas Baltierra Hernandez's avatar Axel Tomas Baltierra Hernandez
Browse files

Modificacion hash

parent 6f302af6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `labsol2`.`solicitante` (
  `so_apP` VARCHAR(35) NOT NULL,
  `so_apM` VARCHAR(35) NULL,
  `so_correo` VARCHAR(85) NOT NULL,
  `so_conthash` VARCHAR(65) NOT NULL,
  `so_conthash` VARCHAR(60) NOT NULL,
  PRIMARY KEY (`idsolicitante`))
ENGINE = InnoDB;

@@ -78,7 +78,7 @@ CREATE TABLE IF NOT EXISTS `labsol2`.`alumno` (
  `al_apP` VARCHAR(35) NOT NULL,
  `al_apM` VARCHAR(35) NULL,
  `al_correo` VARCHAR(85) NOT NULL,
  `al_conthash` VARCHAR(50) NOT NULL,
  `al_conthash` VARCHAR(60) NOT NULL,
  `al_idinstitucion` INT NOT NULL,
  PRIMARY KEY (`idalumno`, `al_idinstitucion`),
  INDEX `fk_alumno_institucion1_idx` (`al_idinstitucion` ASC) ,
@@ -277,7 +277,7 @@ CREATE TABLE IF NOT EXISTS `labsol2`.`administrador` (
  `ad_apP` VARCHAR(35) NOT NULL,
  `ad_apM` VARCHAR(35) NULL,
  `ad_correo` VARCHAR(85) NOT NULL,
  `ad_conthash` VARCHAR(50) NOT NULL,
  `ad_conthash` VARCHAR(60) NOT NULL,
  PRIMARY KEY (`idadministrador`))
ENGINE = InnoDB;

+616 KiB
Loading image diff...
+3 −0
Original line number Diff line number Diff line
@@ -114,6 +114,9 @@ include "../php/crearProyecto.php"

      <div class="container text-center proys-cont">
        <div class="row row-cols-3 row-cols-md-4 g-3">
          <?php
          
          ?>
          <div class="col proy">
            <a class="empty" href="./proyectos/backlog.html">
              <div class="container text-center">
+9 −1
Original line number Diff line number Diff line
@@ -14,3 +14,11 @@ switch ($tipo){
        $sqlVproy = "SELECT * FROM `proyecto`";
        break;
}
$res = $con->query($sqlVproy);
    if ($res->num_rows > 0) {
        while ($row = $res->fetch_assoc()) {
            echo "<br><p style='color: red;'>".$row["img"]."</p>";
        }
    }else{
        echo "<br><p style='color: red;'>sin proyectos visibles</p>";
    }