Есть JQuery галерея, которая при загрузке подключает php-обработчик. Форма отдает данные в папка/папка/index.php
Код index.php
error_reporting(E_ALL | E_STRICT);
require('upload.class.php');
$upload_handler = new UploadHandler();
Фрагмент upload.class.php
function __construct($options = null, $initialize = true) {
$this->options = array(
'script_url' => $this->get_full_url().'/',
'upload_dir' => dirname($_SERVER['SCRIPT_FILENAME']).'/files/',
'upload_url' => $this->get_full_url().'/files/',
С формой я отдаю GET-параметр, в котором указан URL.
КАК ПРИНЯТЬ ЭТОТ ПАРАМЕТР В ФУНКЦИИ?????? Мне нужно заменить значения в массиве 'upload_dir' и 'upload_url'.