| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2002-02-19 15:53 UTC] cmk@php.net
  [2002-02-21 15:59 UTC] netmics at hotmail dot com
  [2002-02-21 16:06 UTC] derick@php.net
  [2002-02-21 16:27 UTC] netmics at hotmail dot com
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 12:00:01 2025 UTC | 
I have php(cgi only) on IIS 5 and I have problems to send information from an html form to a php page to process this data. The problem is that sometimes the php page doesn't catch all the variables from the html form page (in this case the value of the submit button named "aceptar"). The files are the following: -HTML from <HTML> <HEAD> </HEAD> <BODY> <FORM METHOD="get" ACTION="buscadorPhp.php"> palabra clave:<INPUT TYPE="text" name="T1"><BR> <INPUT TYPE="submit" NAME="buscar" VALUE="search"> </FORM> </BODY> </HTML> -PHP data processor <HTML> <HEAD> </HEAD> <BODY> <?php if(!isset($buscar)) { echo "debe especificar la cadena a buscar"; echo "</body></html>"; exit; } $link=mysql_connect("localhost","nobody"); mysql_select_db("mybd",$link); $result=mysql_query("select * from agenda where nombre like '%$T1%' order by nombre",$link); if($row=mysql_fetch_array($result)) { echo "<table border=1><tr>"; while($field=mysql_fetch_field($result)) { echo "<td>$field->table</td> \n"; } echo "</tr>"; do { echo "<tr><td>".$row["id"]."</td><td>".$row["nombre"]."</td><td>".$row["direccion"]."</td><td>".$row["email"]."</td></tr> \n"; }while($row=mysql_fetch_array($result)); echo "</table>"; }else echo "no se encontraron registros" ?> </BODY> </HTML>