mi codigo es este...
Código PHP:
include ("conexion.php");
conectarce();
$cxx = mysql_query("select imagen from subir_imagenes");
$imagen = mysql_fetch_assoc($cxx);
print($imagen['imagen']);
Código PHP:
<?php
include ("conexion.php");
conectarce();
$datos =($_GET['id']) ? 'id=' . mysql_escape_string ($_GET['id']) : "nombre ='".mysql_escape_string($_GET['nombre']) ."'";
$resultado = @mysql_query("select imagen, tipo from subir_imagenes");
$resu = @mysql_query("select id from users");
$da = mysql_query("select subir_imagenes.id , subir_imagenes.imagen, datos.id, datos.nombre FROM subir_imagenes, datos where subir_imagenes.id = datos.id");
print $imagen['imagen'];
print $resu;
print $da;
?>
<table border="1">
<tr>
<th> id</th>
<th> nombre</th>
<th> ids</th>
<th> nombres</th>
<?php
while (list($id, $imagen, $ids ,$nombre) = mysql_fetch_row ($da)){
print $da;
?>
<tr>
<td> <?php print $id; ?> </td>
<td> <?php print $imagen['imagen']; ?> </td>
<td> <?php print $ids; ?> </td>
<td> <?php print $nombres; ?> </td>
</tr>
<tr> </tr>
<?php
}
?>
</table>
muchas gracias
saludos
Fogox