Newer
Older
ournorth2021 / views / salon.php
LuisOlaya on 19 Apr 2021 3 KB habilita boton
<div class="col-md-12">

	<div class="container">

		<?php
		$id = $pagina[1];
		$dia = 0;
		$hoy = date('d');
		if ($hoy == '20') {
			$dia = 1;
		}
		if ($hoy == '21') {
			$dia = 2;
		}
		if ($hoy == '22') {
			$dia = 3;
		}
		if ($hoy == '23') {
			$dia = 4;
		}
		$dia = '1';

		echo "select hora_inicia, hora_termina, actividad, conferencistas  from Agenda where dia='" . $dia . "' and id_evento=" . $id . " and estado=1; ";
		$query = mysqli_query($connect, "select hora_inicia, hora_termina, actividad, conferencistas  from Agenda where dia='" . $dia . "' and id_evento=" . $id . " and estado=1; ");
		?>


		<div class="row">
			<div class="col-md-12" align="center" style=" font-size: 30px; color: #363636">
				<b>Solicítenos soporte dando click en siguiente botón:</b><br><br>


				<?php

				while ($data = mysqli_fetch_array($query)) {

					$moderadores = explode(',', $data['conferencistas']);
					print_r($moderadores);
					/* $participantas = json_decode($data['participantes']); */

				?>
					<div class="card">
						<div class="card-header"><?php echo $data['actividad']; ?> </div>
						<div class="card-body">
							Hora de inicio: <?php echo $data['hora_inicia'] ?> <br>
							Hora de finalización: <?php echo $data['hora_termina'] ?> <br><br>

							Moderador(es): <br>
							<?php
							for ($i = 0; $i < sizeof($moderadores); $i++) {
								echo $moderadores[$i];
								echo "<br>";
							}
							?>
							<div class="modal fade" id="modal_chat" tabindex="-1" role="dialog" aria-hidden="true">
								<div class="modal-dialog">
									<div class="modal-content">
										<div class="modal-header">
											<h5 class="modal-title" id="exampleModalLabel">Chat en línea</h5>
											<button type="button" class="close" data-dismiss="modal" aria-label="Close">
												<span aria-hidden="true">&times;</span>
											</button>
										</div>
										<div class="modal-body" align="left">

											<div class="list-group">
												<?php
												while ($dataChat = mysqli_fetch_array($contactos)) {
													echo '
                            
														<a href="https://wa.me/' . $dataChat["telefono"] . '/?text=Hola,+quiero+información+sobre+' . $data["nombre"] . '" target="_blank" class="list-group-item list-group-item-action" onclick="GuardarDato(' . $_SESSION['id_user'] . ',3, ' . "'" . $dataInfo["nombre"] . "'" . ')">
															<img src="' . $url . '/img/whatsapp.png" width="30">
															' . $dataChat["nombre"] . '
														</a>
													';
												}
												?>
											</div>
										</div>
									</div>
								</div>
							</div>
							<a href="<?php echo $url; ?>/salones">
								<button type="button" class="btn btn-danger" style="border-radius: 30px; margin-bottom: 15px; padding: 10px 30px; color: #000; font-size: 15px; background-color: #fdd300; border: 0; font-family: S-Core-CoreSansBold;">
									Participantes
								</button>
							</a>

						</div>
					</div>
					<div>

					</div>
				<?php

				}
				?>

			</div>




		</div>

	</div>

</div>

<script>
	$(document).ready(function() {
		$("#bt_soporte").addClass("btn_item_menu_active");
	});
</script>

<style>
	body {

		background-image: url('/img/img_wd/bg_soporte.png');
		background-size: cover;

	}

	.inputs {
		margin-bottom: 5px;
	}

	label {
		color: #006cc1;
		font-weight: bold;
		margin-bottom: 0px;
		margin-top: 5px;
	}
</style>