> /blob/download.php?id=1
...

> if ($id_files) {

As you can see in your example, variable names "$id" and "$id_files" are
different. Try this:
if ($id) {
becouse variable name given in URI is "$id", not "$id_file".




-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to