Overview
Comment:Added minor detail to howto
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: ea14aab6003f2d3158a38a8e8011f9a0c71cdd3c
User & Date: matt on 2011-06-08 04:48:39
Other Links: manifest | tags
Context
2011-06-09
05:09
Added string to pgint check-in: be70f56b97 user: matt tags: trunk
2011-06-08
04:48
Added minor detail to howto check-in: ea14aab600 user: matt tags: trunk
2011-06-04
04:14
Added a comment about the (begin ... ) issue that always bites me check-in: 8b22cd0ba6 user: matt tags: trunk
Changes

Modified doc/howto.txt from [37605ab57a] to [21264108f0].

102
103
104
105
106
107
108



109
110
111
112
9. Forms and input

(s:form 'action "login.login" 'method "post"
   (s:input-preserve 'type "text" 'name "email-address" 'size "16" 'maxlength "30")
   (s:input 'type "submit"   'name "form-name" 'value "login"))

(s:get-input 'email-address)




======================================================================
10. 








>
>
>




102
103
104
105
106
107
108
109
110
111
112
113
114
115
9. Forms and input

(s:form 'action "login.login" 'method "post"
   (s:input-preserve 'type "text" 'name "email-address" 'size "16" 'maxlength "30")
   (s:input 'type "submit"   'name "form-name" 'value "login"))

(s:get-input 'email-address)

To preserve the input simply do a set of the value on the 'name field:
(s:set! "email-address" "matt@kiatoa.com")

======================================================================
10.