24/09/2007, 11:14
|
| | | Fecha de Ingreso: abril-2004 Ubicación: Merlo, buenos aires
Mensajes: 364
Antigüedad: 20 años, 7 meses Puntos: 1 | |
Re: Problemas Al Mostrar Resultados De Una Bd Gracias gatorv!!! Funciona de maravillas!!!!!
Solo le agregué margenes para poder ubicarlo a mi gusto dentro del div, quedó así
<?
$link=mysql_connect("localhost", "1855_tribu", "tributoxica") or die ("No se logro la conexion...");
$db=mysql_select_db("1855_encuesta");
$codigo=mysql_real_escape_string($_GET["descripcion"]);
if($codigo) $w=" WHERE descripcion='$codigo'";
$strqry="SELECT CODIGO_FAMASA, DESCRIPCION, PRECIO, FOTO FROM articulos WHERE descripcion LIKE '%$buscar%'";
$qry=mysql_query ($strqry);
$i=mysql_num_rows ($qry);
$row = 0;
$r = 0;
?>
<div class="floatleft2">
<p class="margin3">
<table width="42%" border="1" bordercolor="#006600">
<?
while($r < $i) {
mysql_data_seek ($qry, $r);
$row = mysql_fetch_object ($qry);
$r++;
?>
<tr>
<td width="6%"><font color="#006699" size="1" face="Arial" bgcolor="none"><?php print $row->CODIGO_FAMASA;?></font></td>
<td width="28%"><font color="#006699" size="1" face="Arial"><?php print $row->DESCRIPCION; ?></font></td>
<td width="6%"><font color="#006699" size="1" face="Arial"><?php print $row->PRECIO; ?></font></td>
<td width="2%"><font color="#006699" size="1" face="Arial"><?php print $row->FOTO; ?></font></td>
</tr></p>
<?
}
?>
</table>
<?
mysql_close($link);
?>
</div>
</div>
__________________ "Life goes on..." |