sir ,
i have been make server connection through the QNetworkAccessManager but i want to make post method and send name, userid, and possword to server please help how to make post method in Qt.see my code
nam = new QNetworkAccessManager(this);
QObject::connect(nam,
SIGNAL(finished
(QNetworkReply
*)),
this, SLOT(finishedSlot(QNetworkReply*)));
QUrl url
(QLatin1String("http://taxinomics.com/mobile/Login.php?mobilenumber=number&password=m"));
nam = new QNetworkAccessManager(this);
QObject::connect(nam, SIGNAL(finished(QNetworkReply*)),
this, SLOT(finishedSlot(QNetworkReply*)));
QUrl url(QLatin1String("http://taxinomics.com/mobile/Login.php?mobilenumber=number&password=m"));
To copy to clipboard, switch view to plain text mode
this is get method i want to make post method how to make.i beginner for Qt.
Thanks
Bookmarks