Ver Mensaje Individual
  #3  
Antiguo 02-09-2007
Avatar de arespremium
arespremium arespremium is offline
Miembro
 
Registrado: jul 2007
Posts: 48
Reputación: 0
arespremium Va por buen camino
aca encontre el uso de combobox en php, en codigo

lo que hace es generar un combobox !!
Código PHP:
// uso del combobox

<?php
$combo 
" <SELECT name=\"contact\"> ";

$sql "select id , f_name from yourtable where ";
if (
$rows mysql_query($sql))
{
  while (
$row mysql_fetch_assoc($rows))
  {
    
$id $row["id"];
    
$f_name $row["f_name"];
    
$combo .= "<OPTION value=\"$id\">$f_name</OPTION> ";
  }
}

$combo .= "</SELECT>";

print 
$combo;
?>
Responder Con Cita