Ver Mensaje Individual
  #4 (permalink)  
Antiguo 09/06/2006, 17:37
Avatar de richard20
richard20
 
Fecha de Ingreso: marzo-2006
Mensajes: 139
Antigüedad: 18 años, 1 mes
Puntos: 0
Prueba Asi:

<?php
mysql_connect ("localhost", "root", "xxxxxxxxx");
mysql_select_db ("xxxxxxxxxxx");
$con = mysql_query("select * from xxxxxxxx");
while ($row=mysql_fetch_array($con))
{
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="radio" name="lotes" value="<? echo $row['lote']?>">
<? echo $row['Nombre']?></td>
</tr>
</table>
<?
}
?>

Última edición por richard20; 07/09/2006 a las 08:22