Ahhhhhhhhhhhhhhhhhhhhhhh ya te entiendo
Cambia el mysql_fetch_assoc, por mysql_fetch_array... y le pones $row[0], osea así:
Código PHP:
$sql = "SELECT $valor FROM Informacion WHERE id_usuario='$userid'";
$result = mysql_query($sql);
echo $sql;
while ($row = mysql_fetch_array($result)) {
echo $row['0'];
}
Espero te sirva!!