Estuve renegando un poco y llegue a esto a ver si me pueden dar una mano:
Es decir desde un primer formulario buscar un numero y si esta en la db que me lo muestre.
Cree un index.html
Cita:
y un archivo ver.php<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<?
$select = $_POST['test'];
?>
<form method="post" action="ver.php">
<input name="test" type="text" />
<input type="submit" value="VER" name="enviar">
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<?
$select = $_POST['test'];
?>
<form method="post" action="ver.php">
<input name="test" type="text" />
<input type="submit" value="VER" name="enviar">
</form>
</body>
</html>
Cita:
<?
$select = $_POST['test'];
$conn = mysql_connect('localhost','root','clave');
mysql_select_db('midb',$conn);
$query = 'SELECT batch FROM mitabla WHERE batch="$select"';
$result = mysql_query($query,$conn);
echo '<select name="select">';
while($row = mysql_fetch_array($result)){
echo '<option value="'.$row['id'].'">'.$row['batch'].'</option>';
}
echo '</select>';
?>
$select = $_POST['test'];
$conn = mysql_connect('localhost','root','clave');
mysql_select_db('midb',$conn);
$query = 'SELECT batch FROM mitabla WHERE batch="$select"';
$result = mysql_query($query,$conn);
echo '<select name="select">';
while($row = mysql_fetch_array($result)){
echo '<option value="'.$row['id'].'">'.$row['batch'].'</option>';
}
echo '</select>';
?>