I notice the use of "_GET" in some messages. Is this the same as
"HTTP_GET_VARS[]"?
More or less. $_GET was added in version 4.1 and has an added advantage
of being global in scope (it's a superglobal).
Where in the manual is this documented?
http://www.php.net/release_4_1_0.php
http://www.php.
I notice the use of "_GET" in some messages. Is this the same as
"HTTP_GET_VARS[]"?
Where in the manual is this documented?
Todd
--
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> >> $query = "UPDATE assets SET title = '$title', version = '$version',
> >> developer = '$developer', serial_number = '$serial_number', WHERE
> >> asset_id = '$HTTP_GET_VARS[id]'" ;
> >
> > Change the var to '{$HTTP_POST_VARS['id']}' (with the curly braces
> > since
> > the array reference is i
ement doesn't return anything.
Can I carry the HTTP_POST_VARS to another page, or do I need to use
hidden fields or something?
On Thursday, January 30, 2003, at 10:10 AM, Matt Schroebel wrote:
-Original Message-
From: Mike Tuller [mailto:[EMAIL PROTECTED]]
Sent: Thursday, January 30,
> -Original Message-
> From: Mike Tuller [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, January 30, 2003 11:02 AM
> Subject: [PHP] HTTP_GET_VARS[]
> The issue I am
> having now is that I have the editsoftwareassest.php's form
> action set
&g
I have created a page for editing a row in a MySql database where first
I have a page listing the items in the table, and have the id as a
hypertext link that then on then opens the editing page with the
correct information using HTTP_GET_VARS[id] where the URL is
http://127.0.0.1/asset/editsof
Everyone from this thread needs to reread this:
http://www.php.net/variables.external
Regards,
Philip
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
checkout the most recent version of the help documents from php.net. it
will tell you.
something to do with $_GET, i think...
Jim
- Original Message -
From: "Mike Tuller" <[EMAIL PROTECTED]>
To: "php mailing list" <[EMAIL PROTECTED]>
Sent: Friday, Januar
- Original Message -
From: "Mike Tuller" <[EMAIL PROTECTED]>
To: "php mailing list" <[EMAIL PROTECTED]>
Sent: Friday, January 17, 2003 5:05 PM
Subject: [PHP] $HTTP_GET_VARS
> I am following an example in a book and have run into a problem with a
>
t; <[EMAIL PROTECTED]>
To: "php mailing list" <[EMAIL PROTECTED]>
Sent: Friday, January 17, 2003 4:05 PM
Subject: [PHP] $HTTP_GET_VARS
I am following an example in a book and have run into a problem with a
script that I am trying to run under PHP 4.3.0. What I have is a page
tha
Show us your code
- Original Message -
From: "Mike Tuller" <[EMAIL PROTECTED]>
To: "php mailing list" <[EMAIL PROTECTED]>
Sent: Friday, January 17, 2003 4:05 PM
Subject: [PHP] $HTTP_GET_VARS
I am following an example in a book and have run into a problem
I am following an example in a book and have run into a problem with a
script that I am trying to run under PHP 4.3.0. What I have is a page
that you click on an id number that is from a listing in a database,
and it is supposed to take you to a page to edit that item. I have the
id sent in the
http://localhost/test.php?var=5
results in (global scope)
$var = 5; // Register globals on
$HTTP_GET_VARS['var'] = 5; // Always (?)
$_GET['var'] = 5; // With newer versions of PHP
To access this from a function:
function x() {
global $var;
globsl $HTTP_GET_VARS;
echo $var.'';
e
Jason,
What is the difference?
"Jason Wong" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> On Monday 14 October 2002 08:36, John Negretti wrote:
> > Marco,
> >
> > I was reading that there were some security risks with
> > "register-globals". Is this th
On Monday 14 October 2002 08:36, John Negretti wrote:
> Marco,
>
> I was reading that there were some security risks with
> "register-globals". Is this the same thing as "global".
No, they're totally different things.
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source
Marco,
I was reading that there were some security risks with
"register-globals". Is this the same thing as "global".
John Negretti
www.ideablue.com
"Marco Tabini" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Try using
>
> global $HTTP_GET_VARS;
>
>
Try using
global $HTTP_GET_VARS;
at the beginning of your function. $HTTP_GET_VARS has global scope, and
by default PHP isolates functions from the parent scope.
Marco
On Sun, 2002-10-13 at 16:39, John Negretti wrote:
> Hello All,
>
> I am calling a particular function. Within that fun
Hello All,
I am calling a particular function. Within that function I need access
to the $HTTP_GET_VARS array. It seem I could only access that array if I
pass it as a parameter of the function. Is this how it's supposed to work.
Thanks for any direction. NOTE: I am using PHP 4.0.6.
Jo
18 matches
Mail list logo