R Sreekumar
R Sreekumar
Hi, could please show examples of various HTML form elements like option, select, checkbox, textarea etc.
Thanks a lot. On Mon, Jun 21, 2021 at 3:53 PM Alexander Artemenko < ***@***.***> wrote: > @sree-kumar This is very natural. Just > use s-expressions the same way as...
Help again. Hunchentoot returns "Checkbox" items separately. For example, ``` Car Bike Cycle ``` And the request object is something like: `(vehicle . Car) (vehicle . Cycle) ` Is it...
Sorry, I think you got my question wrong. I am asking about handling request information (GET and POST) in Hunchentoot. Since, I am a beginner, I would like to do...
@vindarel, I have gone through your [lisp journey post](https://lisp-journey.gitlab.io/blog/web-development-in-common-lisp/#accessing-get-and-post-parameters) about introducing `default-parameter-type`. Could please explain on that? Thanks.
I solved the problem by adding, ``` ((vehicle :parameter-type 'list)) ``` from this [link](https://stackoverflow.com/questions/55403846/hunchentoot-handling-checkbox-post-requests) Thanks for your support.