$_GET['variable_name'] for GET variables
and
$_POST['variable_name'] for POST variables.
Change the "variable_name" to whatever was in your form, for example the
below variable name is
"cust_name"
For session it would be $_SESSION['session_name']
etc etc
The above should get you going, but re
[snip]My question is how do you send vars and session var from page to
page without it turned on? Any info would be a big help. [/snip]
rtfm, rtfa, stfw
use $_POST or $_GET array
http://www.php.net/variable
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.ph
use $_POST['name_of_your_form_field'] or
$_GET['name_of_your_form_field'] or $_REQUEST['name_of_your_form_field']
$_REQUEST contains $_GET, $_POST and $_COOKIE
for server vars there is $_SERVER and $_ENV for environment vars
$_SESSION is for session vars
--
PHP General Mailing List (http://www.p
I installed SuSE Linux 9.0 along with php. The flag below is turned off
by default. I could not send any vars with a post or get form. I
turned it one and all works well. The comments tell you not to turn it
on because of possible security issues and to code around it. My
question is how do yo
Hi
I cann't call Global vars or Environment var on Class.How to's i do to
call it?
I want to call variable same below.
var $location
="http://".$HTTP_SERVER_VARS['HTTP_HOST'].$_SERVER['REQUEST_URI']."?".$HTTP_SERVER_VARS['QUERY_STRING'];
Thank you.
Turbo.
--
PHP General Mailing List (http
Hello,
To get ride of magic_quotes I do:
function no_magicquotes() {
global $HTTP_GET_VARS ;
global $HTTP_POST_VARS ;
global $HTTP_COOKIE_VARS ;
if (get_magic_quotes_gpc()) {
// Overrides GPC variables
for (reset($HTTP_GET_VARS); list($k, $v) = each($HTTP_GET_VARS); )
$$k = stripsl
Pretty hard to tell anything without any details about what you're doing...
Sascha Braun wrote:
Hi,
I've made a website and because of presentationproblems I changed the oldstyle
vars to the new globalvars mode (Hope its the right name for it, dont know if
$_SESSION['user'] is a global or it is
Hi,
I've made a website and because of presentationproblems I changed the oldstyle
vars to the new globalvars mode (Hope its the right name for it, dont know if
$_SESSION['user'] is a global or it is not???).
Now the Website works perfect on my WAMP System with Apache 1.3.27 and
PHP 4.3.0, but on
Hi Everone,
for my newest projekt i started to use global var like $_REQUEST['varname'] and so on.
But in some cases i started again to use old var mode.
Finally i have read some about there is need to define the vars, before I'm going to
create
the source for my webpages.
But how can i make
global $var; does nothing outside of a function. You
do not need to use global for this.
$foo = 'bar';
include 'something_that_uses_foo.inc';
http://www.php.net/manual/en/language.variables.scope.php
regards,
Philip Olson
On Sun, 2 Jun 2002, Anzak Wolf wrote:
> I have a question about glo
I have a question about global vars. Why is it that I have to declare a var
global if I'm using it across included files. For example the only why I
can get this var to work is by making it global.
main.php
loader.inc
builder.inc
build_whizzer();
?>
render.inc
html();
?>
considering tha
On Tue, 2 Apr 2002, Erik Price wrote:
> On Tuesday, April 2, 2002, at 01:24 PM, Jason Wong wrote:
>>> (b) Pass a variable as an argument to a function but make that argument
>>> optional so that it does not have to exist to make the function
>>> legitimate.
>>
>> function function2 ($variable_A="
On Tuesday, April 2, 2002, at 01:24 PM, Jason Wong wrote:
>> (b) Pass a variable as an argument to a function but make that argument
>> optional so that it does not have to exist to make the function
>> legitimate.
>
> function function2 ($variable_A="") {
> }
Thanks for the pointer. I didn't
On Wednesday 03 April 2002 02:11, Erik Price wrote:
> (b) Pass a variable as an argument to a function but make that argument
> optional so that it does not have to exist to make the function
> legitimate.
function function2 ($variable_A="") {
}
It's in manual under "Functions" -- original isn'
I have some code, in which I am using the function keyword to create
subroutines of code (in otherwords, not true functions but rather
reuseable chunks of other code).
Yeah, it's ugly, but I need to do it this way for now.
So my question is this: One of my subroutine/functions generates a
va
Hi,
Am I missing something? I'm trying to use vars set in my config.php file in
a function, and can't seem to do it without using $GLOBALS["varname"], which
is a bit of a pain in the
---config.php---
$var1 = 1;
---
---something.php---
function foo
{
if($var1)
{
echo
16 matches
Mail list logo