27/10/2010, 10:35
|
| | | Fecha de Ingreso: octubre-2010
Mensajes: 58
Antigüedad: 14 años, 1 mes Puntos: 0 | |
Respuesta: cargar checkbox verificados desde mysql he probado de esta manera también
<?php
require_once("conexion.php");
$id=6347;
$sql="select * from entregasdiarias where numero=$id";
$res=mysql_query($sql);
$row=mysql_fetch_assoc($res);
$arr = explode (",", $row['material']); ?>
<input name="material[]" type="checkbox"
<?php if ( in_array('BOTAS MOTO', $arr) ) echo ' checked="checked"'; ?>> |