tengo un problema,estoy mostrando los datos de la tabla报道了每个问题的
您需要在现场报名参加维也纳市立大学证书申请会,并且请在日期提交人初次报名时填写问题, zh losdemás不存在数据选择器
日期前的日期可更改的报告的原格式,日期前的时间表可在模式注册中进行注册
este es micódigo,
<table class="table" id="mytable">
<thead>
<tr class="info">
<th></th>
<th>folio</th>
<th>Informacion</th>
<th>Foto</th>
<th>Estado</th>
<th>acciones</th>
</tr>
</thead>
<?php
$i = 1;
foreach ($data as $reporte) {
?>
<tr>
<td><?php echo $i ?> </td>
<td><?php echo $reporte->folio ?>
</td>
<td> <?php echo $reporte->nota ?></td>
<td>
<img src="<?php echo $reporte->folio ?>" width="70" height="70" data-toggle="modal" data-target="#<?php echo $reporte->ID ?>">
</td>
<td> <?php echo $reporte->progreso ?> </td>
<td>
<!--botos de accciones para cambiar estado-->
<a class="btn btn-light " title="cambiar estado" data-toggle="modal" data-target="#1<?php echo $reporte->ID ?>"><i class='material-icons'>compare_arrows</i></a>
<!-- Modal cambio de estado -->
<div class="modal fade" id="1<?php echo $reporte->ID ?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<form method="POST" id="pro" action="<?php echo site_url('/Creportes/actualizarestado?id=' . $reporte->ID); ?>">
<div class="modal-dialog modal-sm" role="document">
<div class="modal-content">
<div class="modal-body">
<br>
<label for="comentario">Motivo de cambio</label>
<br>
<input type="text" id="comentario" name="comentario">
<br><br>
<div class="form-group">
<label for=""> Fecha </label>
<br>
<input type="datetime-local" id="tiempo" autocomplete="off">
<br> <input name="fecha" id="fechabitepoch">
</div>
</center>
<div class="modal-footer">
<center>
<input type="submit" name="update" class="btn btn-success" value="agregar">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cerrar</button>
</center>
</div>
</form>
</div>
</td>
</tr>
<?php $i++;
} ?>
</table>
</div>
</div>
</div>
<script>
$("#tiempo").datetimepicker({
step: 5
});
$.datetimepicker.setLocale("es");
</script>