estoy funcionando en problemas con el siguiente código:Problema con arreglo
$ids = '"' . implode('", "', $crumbs) . '"';
$motd = array();
$dober = $db->query("SELECT id, name, msg, datetime FROM tbl_depts td INNER JOIN tbl_motd tm ON td.id = tm.deptid WHERE td.id IN (" . $ids . ")");
while ($row = $dober->fetch_array()) {
$motd[] = $row;
}
Un print_r revela esto:
Array
(
[0] => Array
(
[0] => 1
[id] => 1
[1] => Management
[name] => Management
[2] => New Management Rule!
[msg] => New Management Rule!
[3] =>
[datetime] =>
)
[1] => Array
(
[0] => 2
[id] => 2
[1] => Human Resources
[name] => Human Resources
[2] => DPS
[msg] => DPS
[3] =>
[datetime] =>
)
)
Como tal, no puedo utilizar este código para generar cosas:
foreach ($motd[] as &$value) {
if ($motd['msg'] != "") {
if ($i == 0) {
?>
<li><a href="#" title="content_<?php echo $value['id']; ?>"
class="tab active"><?php echo $value['name']; ?></a></li>
<?
} elseif ($i == $len - 1) {
?>
<li><a href="#" title="content_<?php echo $value['id']; ?>"
class="tab"><?php echo $value['name']; ?></a></li>
<?php } else { ?>
<li><a href="#" title="content_<?php echo $value['id']; ?>"
class="tab"><?php echo $value['name']; ?></a></li>
<?
}
$i++;
}
}
¿Alguna idea sobre lo que estoy haciendo mal aquí?
EDIT: Puede que le resulte más fácil de entender si lee esto primero: Optimize this SQL query
tenga en cuenta que este código es vulnerable a los ataques de inyección sql. –
Al igual que una nota al margen ... ¿podría 'fetch_assoc() '(http://www.php.net/manual/de/mysqli-result.fetch-assoc.php) adaptarse mejor a sus necesidades? – pinkgothic
Podría perder algo, pero debería poner '$ i = 0;' antes del 'foreach', y no necesita el' [] 'después de' $ motd' allí. – kapa