using register_globals=on and trying to echo out the $5400 errors as
expected, but php sees the correct entry in the $_GET superglobal array as
it should. running a simple foreach($_GET as $key => $val) returns a key of
5400 and a value of 1000 on a page with the querystring of
page.php?5400=1000, so you should be able to pull that info into another
variable correctly.

Jason Reid
[EMAIL PROTECTED]
--
AC Host Canada
www.achost.ca

----- Original Message -----
From: "Eric Pignot" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, August 25, 2002 7:24 PM
Subject: [PHP] Re: Can someone - anyone see my error?


> > <form enctype="multipart/form-data" action="postbit.php" method="post">
> > <input type="hidden" name="5400" value="1000">
> > Send this file: <input name="userfile" type="file">
> > <input type="submit" value="Send File">
> > </form>
>
> I am not really replying to your question, but just as a remark, in php, a
> variable needs to start with a letter or and underscire. (must be detailed
> in the doc)
> So I have absolutely no idea how PHP will interpret this line :
>  <input type="hidden" name="5400" value="1000">
> (and I would be curious to know how it actually does ! can you tell me ? )
>
> bye
>
> Eric
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to