View Single Post
  #1  
Old 11-13-2003, 03:26 PM
 
machnhed1 machnhed1 is offline
 

eXpert
  
Join Date: Feb 2003
Location: Illinois
Posts: 274
 

Default Printing out an element in an array - Problem

Ok, I've done this a thousand times before, but tonight I must not be firing on all cylinders because, I can't figure out why this isn't working:

Doing a print_r of an $HTTP_POST_VARS variable generates the following array:
Code:
Array ( [test1] => 50 [test2] => 98746 [x] => 37 [y] => 5 )

I then assigned it to smarty with the following code:
Code:
$smarty->assign("fm_subs","$HTTP_POST_VARS");

I then tried to print the element "test1" in my smarty template with the following code:
Code:
{$fm_subs.test1}

It's printing out an "A", so I assume it is trying to tell me that I am referencing the entire array, but for the life of me, I don't know what I am doing wrong.

To anyone who answers this, thank you
__________________
Following the signature guidelines : xcart pro 3.5.8 - [RedHat]
Reply With Quote