Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/06/2006, 17:27
wertyhead
 
Fecha de Ingreso: febrero-2006
Mensajes: 79
Antigüedad: 18 años, 2 meses
Puntos: 0
alguien me puede ayudar con este script?

saludos, tengo algo asi

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

me esta mostrando los radio botones como debe ser, segun los valores, pero no me esta mostrando el valor, solo aparecen los radiobotones, alguien me sugiere algo, que podria estar pasando, por que no me muestra los valores? bueno gracias

Última edición por wertyhead; 19/07/2006 a las 09:57