HTML_AJAX
[ class tree: HTML_AJAX ] [ index: HTML_AJAX ] [ all elements ]

Source for file index.php

Documentation is available at index.php

  1. <html>
  2. <head>
  3. <title>HTML_AJAX Examples</title>
  4. </head>
  5. <body>
  6. <p>
  7. These examples cover basic AJAX usage
  8. </p>
  9.  
  10. <p>
  11. All example files are fully commented, reading through them will give you a good overview on how things work.
  12. </p>
  13.  
  14. <p>The term proxy in these examples refers to a javascript class that is generated and has functions that map to the eqivalent php class.
  15. These proxy classes work much in the same way as a SOAP proxy class that is generated from wsdl.
  16. </p>
  17.  
  18. <p>
  19. Front end files for examples, you can actually run these and see some example output
  20. </p>
  21. <ul>
  22. <li><a href='proxyless_usage.php'>proxyless_usage.php</a> - Using HTML_AJAX in standalone mode, possible doesn't require PHP or any backend HTML_AJAX classes</li>
  23. <li><a href='proxy_usage_inline_javascript.php'>proxy_usage_inline_javascript.php</a> - Single file proxy style usage</li>
  24. <li><a href='proxy_usage_server.php'>proxy_usage_server.php</a> - Multi-file proxy usage, either server file could be used with this example</li>
  25. <li><a href='queue_usage.php'>queue_usage.php</a> - An example of using a queue to manage ajax calls, a simple live search example</li>
  26. <li><a href='helper_usage.php'>helper_usage.php</a> - An example showing the basics of the helper api</li>
  27. <li><a href='form.php'>form.php</a> - Basic AJAX form submission example</a></li>
  28. </ul>
  29.  
  30. <p>Real Life Examples</p>
  31. <ul>
  32. <li><a href='login/index.php'>login/index.php</a> - An example creating an AJAX driven login</a></li>
  33. <li><a href='review/index.php'>review/index.php</a> - A simple live review system, AJAX form submission and click to edit</a></li>
  34. <li><a href='guestbook/index.php'>guestbook/index.php</a> - A simple guestbook system, uses action system so you never write a line of javascript</a></li>
  35. <li><a href='shoutbox.php'>shoutbox.php</a> - How to use AJAX form submission</a></li>
  36. </ul>
  37.  
  38. <p>
  39. 2 server examples are provided
  40. </p>
  41. <ul>
  42. <li>server.php    - Basic server operation, serving ajax calls and client lib requests</li>
  43. <li>auto_server.php    - Advanced server operation, only create php classes as needed</li>
  44. </ul>
  45.  
  46. <p>
  47. Examples files showing howto use HTML_AJAX_Util javascript class
  48. </p>
  49. <ul>
  50. <li><a href='js_utils_vardump.php'>js_utils_vardump.php</a>    - Shows the output of HTML_AJAX_Util.varDump() and compares its against PHP's var_dump
  51. </ul>
  52.  
  53.  
  54. <p>
  55. Other Example files:
  56. </p>
  57. <ul>
  58. <li><a href='test_speed.php'>test_speed.php</a>    - A basic setup for measuring the speed of calls</li>
  59. <li><a href='test_priority.php'>test_priority.php</a> - A basic test showing how Priority queue works</li>
  60. <li><a href='serialize.php.examples.php'>serialize.php.examples.php</a>    - Internal tests for the php serialize format serializer</li>
  61. <li><a href='serialize.url.examples.php'>serialize.url.examples.php</a>    - Internal tests for the urlencoded format serializer</li>
  62. </ul>
  63.  
  64. <p>
  65. Javascript and Html Examples:
  66. </p>
  67. <ul>
  68. <li><a href="test_behavior.html">test_behavior.html</a> - A short overview of how to use behavior.js.  Behavior uses css selectors to apply javascript behaviors without throwing lots of javascript handlers into your html.</li>
  69. </ul>
  70. </body>
  71. </html>

Documentation generated on Mon, 11 Mar 2019 14:05:30 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.