X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Printing out an element in an array - Problem (https://forum.x-cart.com/showthread.php?t=5221)

machnhed1 11-13-2003 03:26 PM

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. :oops:

To anyone who answers this, thank you :!:

funkydunk 11-13-2003 11:07 PM

should it be:

$smarty->assign("fm_subs",$HTTP_POST_VARS);

?

machnhed1 11-14-2003 05:05 AM

FD,

Worked like a charm.

Thanks again for the save. Ever have those days when the answer was right under your nose, but you just didn't look to see it?

:oops:

funkydunk 11-14-2003 07:06 AM

every day :)


All times are GMT -8. The time now is 08:46 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.