RE: how can I add more variables to the $HTTP_GET_VARS ?

DrX <[email protected]> 2 Sep 2003 08:45:19 -0000
Newsgroups gmane.comp.web.oscommerce.devel
Message-ID <fbb48cebe9e41c2207ab8986576eebbe@osCommerce-Forums>
This message was sent from: Development
http://forums.oscommerce.com/viewtopic.php?p=223161#223161
----------------------------------------------------------------

Nevermind....sorted it so it sends more variables so i can grab them with 
the $HTTP_GET_VARS.....

Incase anyone is wondering....

[code]'<a href="' . tep_href_link(FILENAME_FREE_DOWNLOAD, 'id=' . $freedownloads_array[$i]['id] . '&' . 'filename=' . $freedownloads_array[$i]['file_name'], 'NONSSL') . '">' . $freedownloads_array[$i]['download_name'] . '</a>[/code]

this will pass on 2 variables which the $HTTP_GET_VARS can pick up and seperate because of the &.......

So you can send as meny bit's of info as you like....

 :wink: [/code]