![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
28/04/2003, 07:06
|
| | Fecha de Ingreso: diciembre-2002
Mensajes: 341
Antigüedad: 22 años, 2 meses Puntos: 0 | |
Suponiendo que el campo en cuestión se llama "nombre" y que la tabla a la que accedes se llama "tabla":
$get = mysql_query('select nombre from tabla');
$res = mysql_fetch_array($get);
echo $res['nombre']; |