![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
el nombre de mi caja es 'Expediente' y donde mando traer es $gru=$_POST['Expediente']; pero me dice este mensaje...
Notice: Undefined index: Nombre in c:\inetpub\wwwroot\sis\resultado.php on line 7
Expediente Nombre
y la linea 7 es
<?php
include("conex.php");
fondo();
encabezado();
$link=Conectarse();
$gru=$_POST['Expediente'];
$nombre=$_POST['Nombre'];
$s = " select * from exps where 1=1 ";
if ($nombre!="") $s = $s . " and Expediente like '%$nombre%' ";
if ($gru!="") $s = $s . " and nombre like '%$gru%' ";
$result=mysql_query($s,$link);
espero me puedan dar una ayudadita....