Hi!
I've a simple code to download "path" file to "file" on my disk.
Code:
connect(http, SIGNAL(requestFinished(int, bool)), this, SLOT(httpRequestFinished(int, bool))); qDebug() << "open file error"; delete file; file = 0; return; } http->setHost(url.host(), mode, url.port() == -1 ? 0 : url.port()); httpGetId = http->get(path, file);
If i write path like:
i's doing right, but when I connect to get fields (ex. do=newthread&f=4) to stringCode:
http://www.qtcentre.org/forum/newthread.php
the get field is not pas :/Code:
http://www.qtcentre.org/forum/newthread.php?do=newthread&f=4
I'm using simple code in PHP to test
Code:
echo 'OK'; print_r($_REQUEST);
And I get empty $_REQUEST :/
