i have a problem with download files:
Code: Select all
<a href=\"actions.php?action=download&id={$result["id_manu"]}\">download</a>this one:
Code: Select all
<a href=\"index.php?page=auth/actions&action=download&id={$result["id_manu"]}\">download</a>actions.php is the same file in 2 different directories.
i tried to print the $vars that i send from download page to actions.php.
first one ( works )
Code: Select all
Array
(
[action] => download
[id] => 9
[uid] => 9445687aeb726ab3fb8d2e5ebd44f9ee
)Code: Select all
Array
(
[page] => auth/actions
[action] => download
[id] => 9
[uid] => 9445687aeb726ab3fb8d2e5ebd44f9ee
)