PHP Classes

PASS VARIABLES

Recommend this page to a friend!

      Cascade Dropdown 3 Levels  >  All threads  >  PASS VARIABLES  >  (Un) Subscribe thread alerts  
Subject:PASS VARIABLES
Summary:HOW PASS VARIABLES TO NEXT PAGE?
Messages:4
Author:Jose Silva
Date:2007-08-26 01:10:15
Update:2007-09-03 12:24:33
 

  1. PASS VARIABLES   Reply   Report abuse  
Picture of Jose Silva Jose Silva - 2007-08-26 01:10:15
Hello,

I try use the code in one page and I see that the variables, show the numbers
but I want that show the names.

I have tryed :
"$var1 = $_POST['brand'] . $_POST['type'] . $_POST['model'] ; "
and it show by example 1 1 1. and I want that show the names .

How it show the names?

Thanks,
JSilva


  2. Re: PASS VARIABLES   Reply   Report abuse  
Picture of Gobinath Mallaiyan Gobinath Mallaiyan - 2007-08-29 11:56:59 - In reply to message 1 from Jose Silva
Hi,

Its not clear what exactly you want to get. The Form element name??

regards
Goib

  3. Re: PASS VARIABLES   Reply   Report abuse  
Picture of Jose Silva Jose Silva - 2007-08-29 23:34:39 - In reply to message 2 from Gobinath Mallaiyan
Hello,

No, I want to get the variables content, by example how you have in your data/sql "model 1", model 2" into pass for next step in php.

Thanks,
José Silva

  4. Re: PASS VARIABLES   Reply   Report abuse  
Picture of Gobinath Mallaiyan Gobinath Mallaiyan - 2007-09-03 12:24:33 - In reply to message 3 from Jose Silva
Hi,

You can get the content in the next page using $_POST / $_GET which ever method you are using. Ex : $_GET['listbox1']

You can even use the $_REQUEST method.

regards
Gobi