PHP / MySQL获取id = $ result的名称

时间:2015-10-16 12:34:40

标签: php mysql

我正在进行咨询,其中url发送了id,我需要显示与此id相关联的名称,但是通过使用此代码,它会为我提供所有名称,只需要与此id相关联的名称。< / p>

    <?php
require_once('../../../Connections/colegio.php');
if (!$colegio) {
    die('No pudo conectarse: ' . mysql_error());
}
$consulta = 'SELECT nombre_alumno FROM alumno';
$resultado = mysql_query($consulta);
if (!$resultado) {
    die('La consulta falló: ' . mysql_error());
}
/* obtención de filas en orden inverso */
for ($i = mysql_num_rows($resultado) - 1; $i >= 0; $i--) {
    if (!mysql_data_seek($resultado, $i)) {
        echo "No se encuenta la fila $i: " . mysql_error() . "\n";
        continue;
    }

    if (!($fila = mysql_fetch_assoc($resultado))) {
        continue;
    }

    echo  $fila['nombre_alumno'] . "<br />\n";
}

mysql_free_result($resultado);
?>

1 个答案:

答案 0 :(得分:0)

我不确定我是否理解这一点但是:

Select nombre_alumno FROM alumno where id='Your ID';