数组关联性和实用性键,y数组键可以使用,y数组键可以使用,y序号不存在。
grasias,Os dejo lafunción:
function comprobarDatos($pdo)
{
$sql = 'SELECT nombre, apellidos, dni, direccion, telefono from usuarios where login=:login';
$gsent = $pdo->prepare($sql);
$login = [$_SESSION['login']];
$gsent->execute($login);
$resultadoDatos = $gsent->fetchAll();
// var_dump($resultadoDatos);
foreach($resultadoDatos as $filas){
for ($i=0; $i < 5; $i++) {
?> <h6> <ul> <li> <?= key($resultadoDatos[$i]).": ".$filas[$i] ?> </li></ul> </h6><?php
}
}
答案 0 :(得分:0)
由于在构造查询时使用命名参数,因此在提供值时必须使用关联数组:
$login = ['login' => $_SESSION['login']];