Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/12/2007, 01:12
BimS
 
Fecha de Ingreso: diciembre-2007
Mensajes: 3
Antigüedad: 17 años, 3 meses
Puntos: 0
No reconoce variable de formulario

Quiero hacer lo siguiente:
Código:
<form method="POST" action="multidimensional2.php">
<table border="0">
	<tr>
		<td colspan="2">Ingrese datos a buscar por favor:</td>
	<tr>
		<td width="19%" align="right">Nombre: </td>
		<td width="81%"><input type="text" name="nom" size="29"></td>
	</tr>
	<tr>
		<td width="19%"></td>
		<td width="81%"><input type="submit" value="Buscar" name="B1"></td>
	</tr>
</table>

<?php
echo $nom;

?>
Y cuando llamo a la variable $nom no aparece. ¿Alquien sabe por qué?