ID:               15433
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Feedback
 Bug Type:         Unknown/Other Function
 Operating System: windows 2000 Professional
 PHP Version:      4.1.1
 New Comment:

Please provide more information.

What is your setting of register_globals?
And how do you experience this error? Is isset($buscar) always false?


Previous Comments:
------------------------------------------------------------------------

[2002-02-07 14:17:37] [EMAIL PROTECTED]

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>




------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=15433&edit=1

Reply via email to