Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/06/2006, 17:33
MindPaniC
Invitado
 
Mensajes: n/a
Puntos:
prueba algo asi:

Código PHP:
<?php
mysql_connect 
("localhost""root""wertyhead");
mysql_select_db ("bd");
$bavaria mysql_query("select * from tabla");
while (
$row=mysql_fetch_array($bavaria)) {
$lote "$row[lote]";

echo 
"<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><input type=\"radio\" name=\"lotes\" value=\"".$lote."\"></td></tr></table>";     
    } 
?>