Hi to all,
I've seen some posts about QHttp and QNetworkAccessManager working on connections, the last seems to be the best solution but I've not found example on the Login action.
I'd like to login in a classic login_page.php as follow:

Qt Code:
  1. <form name="login_form" method="post" action="login.php">
  2. <table class="width50" cellspacing="1">
  3. <tr>
  4. <td class="form-title">
  5. Login </td>
  6. <td class="right">
  7. </td>
  8. </tr>
  9. <tr class="row-1">
  10. <td class="category" width="25%">
  11.  
  12. Username </td>
  13. <td width="75%">
  14. <input type="text" name="username" size="32" maxlength="32" />
  15. </td>
  16. </tr>
  17. <tr class="row-2">
  18. <td class="category">
  19. Password </td>
  20. <td>
  21.  
  22. <input type="password" name="password" size="16" maxlength="32" />
  23. </td>
  24. </tr>
  25. <tr>
  26. <td class="center" colspan="2">
  27. <input type="submit" class="button" value="Login" />
  28. </td>
  29. </tr>
  30. </table>
  31. </form>
To copy to clipboard, switch view to plain text mode 

Should you suggest a simple QNetworkAccessManager authentication code?
THANKS!!!