Hi All, I am new to HawHaw and I have created a small WAP site, and I would like to store user information such as the username in the session or a cookie but...
Hi Greg, with what kind of device do you have problems with? Session handling is the same as for other PHP apps. Some WAP-specifics can be handled with...
Hi Norbert, I have one php page that handles all the different menus, and I would like to store some information as the user goes along... I have a form on my...
Hi Greg, after changing: $myForm->add_form($mySubmit); to: $myForm->add_submit($mySubmit); your code works pretty fine inclusive session storage. Norbert...
Thanks Norbert, You are right, this code works, but i have found that the session data get erased when using the redirection to move to another page: ...
Hi HAWHAW developers, HAWHAW V5.17 is available for download. The internal device detection algorithm has been slightly improved, so that rendering issues on...
Thanks Norbert. Based on your latest post, it said that i could insert customized html script, with add_raw(). And if i use add_raw to insert <input ...
Hi Donnie, usage of HAW_raw in fact should be an option for you: ... $myUploadHTML = "<input name="myfile" type="file" ...>"; $myUploadElement = new...
It works, Norbert :) The add_raw function does its job. Finally, i could upload an image via wap. But it seems that we have to add_raw for FORM element, ...
Glad to hear that it works! Concering class definitions: The HAW_text and HAW_link classes have a method called set_css_class(), where class definitions can be...
Whoa, ... i didn't read the reference carefully ... thanks ! ... set_css_class(), where class ... file ... ... customized html ... HAWHAW will ... answered it...
You have to use a sequence like: $item = new HAW_text("- listitem"); $myDeck->add_text($item); ... (There is no dedicated class for lists in hawhaw) Norbert...
Hi list, the PHP library hawhaw.inc has been slightly enhanced and is now available as V5.18. The new version has an improved support of Android devices and...
Hi Norbert, Back to the same Idea! Is it possible to add an image to linkset, I would like to use an icon before the link. [icon][link] [icon][link] ...
Hi Jason, what do you think about adding a new method HAW_link::add_image($myImage)? This way it would be possible to place all kind of icons in front of...
Hi Norbert, Doh! I don't know what I was thinking of course class::function Thank You! Jason ... HAW_link::add_image($myImage)? ... links. It would work ... to...
Norbert, I finally had some time to try and style up my pages with the new css function. I was working with a few sized graphics and was thinking that if I was...
How about giving the display <div> section an id, so you can reference it and perform any CSS manipulations of your choice. That's quite easy to implement and...
How about something like this: ... $myItem1 = new HAW_text("listitem 1"); $myItem2 = new HAW_text("listitem 2"); $myLink = new HAW_link("Some link",...
Hi list, the PHP library hawhaw.inc V5.19 is available for download. The list of modifications is as follows: The classes HAW_link and HAW_phone now provide a...
I thought about that and considered it to be a perfect candidate for a HAWHAW plugin. I wrote the plugin plus an article how HAWHAW plugins in general and this...
My personal opinion is that it's better to keep the core library lean and to implement such kind of features as external plugins. From the implementers point...
... My problem is that: I need a page with 5 rows of text, 3 of them right aligned and 2 of them left aligned. How can i do that? Sorry for my bad english, I'm...
Hi Sandro, change of text alignment within a deck is not supported. As HAW_text elements are surrounded with <span> tags, set_css_class() unfortunately seems...
Hello all, I´m receiving this message: Fatal error: Call to a member function add_raw() on a non-object in C:\Inetpub\wwwroot\ufind\wap\tempo.php on line 60 ...