Código PHP:
Ver original<?php
$comentarios= new Prospecto();
$lista = $comentarios->comentarios($idComen);
?>
<?php foreach($lista as $campo) {
$fechaCom = $campo['fecha'];
$horaCom = $campo['hora'];
$fechaSis = date("Y-m-d"); //echo $prueba = date("Y-m-d", date());
$dias= new Prospecto();
$diasImp = $dias->dateDif($fechaCom,$fechaSis);
$horas = new Prospecto();
$horasImp = $horas->RestarHoras($horaCom,$horaSis);
?>
<div style="border:1px solid #ffffff; background-color: #edeff4; margin-top: 2px;" >
<li style="list-style: none;"> <label style="font-family: sans-serif; color: blue; font-size: 14px;">
<?php print_r($_SESSION['NOMBRE']);echo $ps;?></label> <label style="font-size: 13px;">
<?php echo $campo['comentario']; ?></label> </li>
<?php
if($diasImp==1 or $diasImp > 1){
?>
<li style="list-style: none;"> <label style="font-family: sans-serif; color: gray; font-size: 10px;" >hace: <?php echo $diasImp; ?> dia(s) </label> </li>
<?php
}elseif($diasImp < 1){
$horasVer= substr($horasImp,0,2); if($horasVer < 1){
$minutos = substr($horasImp,3,2); ?>
<li style="list-style: none;"> <label style="font-family: sans-serif; color: gray; font-size: 10px;" >hace: <?php echo $minutos; ?> minutos </label> </li>
<?php
}elseif($horasVer == 1 or $horasVer > 1){
?>
<li style="list-style: none;"> <label style="font-family: sans-serif; color: gray; font-size: 10px;" >hace: <?php echo $horasVer; ?> hora(s) </label> </li>
<?php
}
}
?>
</div>
<?php } ?>
<div style="border:1px solid #000000; background-color: #edeff4; margin-top: 2px;">
<option style="visibility: hidden;" id="id_pros" value="<?php echo $campo['id_pros']; ?>"></option>
<input type="text" id="nuevoComentario" placeholder="Escriba aqui un nuevo comentario" style="width: 100%;" onkeypress="validar(event)" value=" " />
<li style="list-style: none; font-size: 11px; ">
<label>Recordatorio?</label>
<input type="checkbox" id="recordatorio" name="recordatorio" value='1' onchange="javascript:activar()" />
</li>
<li style="list-style: none; font-size: 11px; " >
<label>Tipos: </label>
<select id="tipos" disabled="disabled" >
<option value="1">Llamada</option>
<option value="2">Visita</option>
<option value="3">Confirmacion</option>
</select>
<label> Fecha</label>
<input type="date" name="fecha" value="" disabled="disabled" id="fecha" />
<label>Hora</label>
<input type="time" name="hora" value="" id="hora" disabled="false" />
<input type="button" value="Guardar" id="guardarRecor" disabled="disabled" />
</li>
</div>
</div>
</form>
</div>
<div style="float: left; width: 35%;">
<li style="list-style: none;">
<label style="font-family: sans-serif; font-size: 13px; color: blue; padding: 10px 0 0 10px;">Documentos</label> <label style="float: right; color: blue;" > <a href="#">Ver mas Documentos</a></label>
</li>
<div style="float: left; width: 100%; padding: 10px 0 0 10px;">
<div style="float: left; width: 100%; border:1px solid #000000; background-color: #edeff4;">
<li style="list-style: none;"> Cuadro 1</li>
</div>
<li style="list-style: none;">
<label style="font-family: sans-serif; font-size: 13px; color: blue; margin-top: 2px;">Recordatorios</label> <label style="float: right; color: blue;" > <a href="#">Ver mas Recordatorios</a></label>
</li>
<div style="float: left; width: 100%; border:1px solid #000000; margin-top: 2px; background-color: #edeff4;" >
<?php
$recordatorios= new Prospecto();
$listaR = $recordatorios->cargarRecordatorios($idComen);
foreach($listaR as $columna){
?>
<option style="visibility: hidden;" id="id_prosp" value="<?php echo $campo['id_pros']; ?>"></option>
<li style="list-style: none; font-family: sans-serif; font-size: 11px;">
<?php
echo $columna['nombre'].'-'.$columna['hora_recor'].': '.$columna['recordatorio'];
?>
</li>
<?php
}
?>
</div>
</div>
</div>
</div>
</div>
</form>
<?php } ?>
</body>