Ver Mensaje Individual
  #8 (permalink)  
Antiguo 03/07/2012, 11:52
met_lun
 
Fecha de Ingreso: julio-2012
Ubicación: jalisco
Mensajes: 8
Antigüedad: 12 años, 8 meses
Puntos: 0
Respuesta: Traer datos a un select con php

hola tengo un problema similar tengo este codigo

<?php
include_once "..\config\conexion.php";

error_reporting(0);
$queryfolio="SELECT folio FROM corresp_recibida";
$resfolio=mysql_query($queryfolio);
$arrfolio=mysql_fetch_array($resfolio);
$f=$arrfolio["folio"];
?>

<table border="0">
<form id="correspondencia" action="" method="post"><br />

<td>N° de Folio:
<td><option value="<?php echo $arrfolio["folio"]; ?>" />

<input type=submit value="Buscar">
</table>

pero no me muestra el select, me urge poder resolverlo agradezco su ayuda :)