Re: [PHP] PHP variable values

2008-02-10 Thread Nathan Nobbe
On Feb 10, 2008 6:30 PM, Ron Piggott [EMAIL PROTECTED] wrote:

 What is the command which shows the value of all the variables in
 memory?  Ron


get_defined_vars()

-nathan


RE: [PHP] php variable

2003-10-13 Thread Jay Blanchard
[snip]
$var=¨How are you¨;
THE PROBLEM IS THAT I ALSO WANT TO USE $VAR IN SCRIPTTWO.
[/snip]

Pleace $var in a hidden form element.

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



Re: [PHP] php variable

2003-10-13 Thread Marek Kilimajer
Read about sessions in the manual.

Onno Kuipers wrote:

Hello,

If i set a variabele in lets say 'script one'. When i jump into 'script 
two', is there a way (without cookies) to read the variable set in 
'script one'

Like: SCRIPTONE.PHP:

html
body
?php
$var=¨How are you¨;
?
form method=post action=scripttwo.php
 table
  tr
  td style=vertical-align: top;name:/td
  td style=vertical-align: top; input type=text name=name/td
  /tr
 /table
 input type=submit name=submit value=OK
/form
/body
/html
SCRIPTTWO.PHP:

html
body
?php
$naam=$_POST['naam'];
print ¨Hello $naam¨;
print ¨$var¨;
?
/body
/html
THE PROBLEM IS THAT I ALSO WANT TO USE $VAR IN SCRIPTTWO.

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


Re: [PHP] php variable

2003-10-13 Thread Onno Kuipers
Jay Blanchard wrote:
[snip]
$var=¨How are you¨;
THE PROBLEM IS THAT I ALSO WANT TO USE $VAR IN SCRIPTTWO.
[/snip]
Pleace $var in a hidden form element.
I tried... something like this

input type=hidden name=var2
value=¨?php print $var2; ?¨
but it doesn't work. Maybe you mean something totaly different, can you 
show me what you mean.

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


Re: [PHP] php variable

2003-10-13 Thread Comex
[EMAIL PROTECTED]
Onno Kuipers:
 Jay Blanchard wrote:
 [snip]
 $var=¨How are you¨;
 THE PROBLEM IS THAT I ALSO WANT TO USE $VAR IN SCRIPTTWO.
 [/snip]

 Pleace $var in a hidden form element.

 I tried... something like this

 input type=hidden name=var2
 value=¨?php print $var2; ?¨

 but it doesn't work. Maybe you mean something totaly different, can
 you show me what you mean.

Should work, if not use sessions.

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



Re: [PHP] php variable

2003-10-13 Thread Scott Fletcher
Should also work if you use the POST method...

Comex [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 [EMAIL PROTECTED]
 Onno Kuipers:
  Jay Blanchard wrote:
  [snip]
  $var=¨How are you¨;
  THE PROBLEM IS THAT I ALSO WANT TO USE $VAR IN SCRIPTTWO.
  [/snip]
 
  Pleace $var in a hidden form element.
 
  I tried... something like this
 
  input type=hidden name=var2
  value=¨?php print $var2; ?¨
 
  but it doesn't work. Maybe you mean something totaly different, can
  you show me what you mean.

 Should work, if not use sessions.

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



Re: [PHP] php variable

2003-10-13 Thread Scott Fletcher
Page 1

input type=hidden name=var2 value=test

Page 2

echo $_REQUEST['var2'];

//or

echo $_POST['var2'];

//==
//Sometime noticed some glitch with $_POST because sometime PHP think the
data go to $_GET...
//So, to prevent future headache, I use $_REQUEST['var2'] at all time...
//==

Scott
Comex [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 [EMAIL PROTECTED]
 Onno Kuipers:
  Jay Blanchard wrote:
  [snip]
  $var=¨How are you¨;
  THE PROBLEM IS THAT I ALSO WANT TO USE $VAR IN SCRIPTTWO.
  [/snip]
 
  Pleace $var in a hidden form element.
 
  I tried... something like this
 
  input type=hidden name=var2
  value=¨?php print $var2; ?¨
 
  but it doesn't work. Maybe you mean something totaly different, can
  you show me what you mean.

 Should work, if not use sessions.

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