|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
$HTTP_GET_VARS help
I using the following code to display the pass value(s) with the url:
echo "\$HTTP_GET_VARS =" rint_r($HTTP_GET_VARS);print("<br>");output: $HTTP_GET_VARS =Array ( [20050127-5292-7301-Tom] => ) How can I get the value "20050127-5292-7301-Tom" out of the array and store it in a value call $passvalue. Any help would be great! Thanks. |
|
#2
|
|||
|
|||
|
How is this value being entered on your form? It looks like you're value's being entered as a key instead...
|
|
#3
|
|||
|
|||
|
Try it this way instead:
echo '$_GET = '; print_r($_GET); print('<br>');
__________________
__________________________________________________ _ Wil Moore III, MCP | Integrations Specialist | Senior Consultant Are You Listed...? | DigitallySmooth Inc. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > PHP Development > $HTTP_GET_VARS help |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|