My projects: SUGG (M, KS), CRZST, SYNONS, URLS, Misc: 3Dengine, UniteHowTo, FliCC, My blog.
Old/abandoned: TheRarestWords (TcCrnch).
Hi, I'm Slava V. and I develop those projects in free time. rarestwords@mail.ru
Page created:
Jun 17, 2009 (267day ago)
Last modified 266day ago
To main page | Opera Unite HowTo's

GET/POST data


See Uniteness for better way to handle GET/POSTs.


GET data

/service_path/page?get_param=get_value
available as
function start_page(r) {
    r.connection.request.queryItems['get_param'][0] // == "get_value"

POST data

<form method="post"><input name="title"></form>
Here is how to get this POST data from script:
function start_page(r) {
    var title = r.connection.request.bodyItems['title'][0];
    ....
See also: Request Hierarchy

In Uniteness

r.GET.id
r.POST.title

Slava V. [about me]


main page



Last updated


  1. .ua
  2. Opera Unite HowTo's
  3. .us (files)
  4. Distribute Your Application
  5. 24/7 sites (permanent applications - idea) [stub]
  6. Issues
  7. HTTP Connections (AJAX/REST)
  8. Markuper (HTML templates)
  9. Cookies
  10. file_wrap.js - File Wrapper
  11. Basic HowTo: Simple app (tutorial)
  12. Static images, client-side scripts
  13. Application Examples
  14. How to Debug Opera Unite apps
  15. Persistence & databases
  16. Opera Unite benchmark
  17. From PHP to Opera Unite
  18. Uniteness (Framework)
  19. Config.xml
  20. Key-value storage
  21. Widget Object
  22. Notifications (Growl'esque)
  23. Reset (debug)
  24. Cron example
  25. What I meant by CNAMEs
  26. Wish List
  27. Device Unavailable
  28. StopLorem (Opera Unite blogging)
  29. uniteness-0.11
  30. GET/POST data
  31. CRUD And Static (example)
  32. Opera object
  33. URLs
  34. Headers & Redirects
  35. Error Console
  36. JSON State (storing data)
  37. Security
  38. /storage/ (in fileio)
  39. Yusef library
  40. unite_info (a-la php_info)
  41. Javascript Imports
  42. onunload / _close
  43. fileio: Sandboxed Filesystem
  44. Request Hierarchy (like php_info)
  45. Intro: Web Apps with Opera Unite