Hi everybody!!! I have some date fields like this.... $error=$subscription->AddInput(array( "TYPE"=>"custom", "NAME"=>"e_data_inici", "ID"=>"e_data_inici", ...
Hello, ... I suppose you have something wrong in the definition of the input. Maybe the label definition is not there or is incorrect. I would need to see how...
Hello, ... PHP employs poor man garbage collection. It means that a value is only destroyed only when the last reference to is is removed. Assign by reference...
Hello, ... No, \1 means the include appears there after the pre-filter is applied. ... I think the problem is that the navbar.tpl data is captured by the ...
Hello, ... I don't think that is your problem. I check an hidden input with WasSubmitted, rather than the submit because depending on how you submit the forms,...
Hello, I just would like to let you know about this page that I think it is of your interest. Class: Xinha plug-in Description: Forms plug-in to use Xinha HTML...
... $form is false! ... these ... Manuel, The above logic for handling {if} sections did not work. It is still giving the following error: unrecognized tag...
Hello, ... What I meant is to add those two new entries in the $search and $replace array. You should not remove the other entries. -- Regards, Manuel Lemos ...
Manuel, Yes, I appended those strings as elements at the end of each array (search/replace) while keeping the old ones. But it did not work. Could be a logic...
hi Manuel, is it better practice to use... 'ReplacePatterns'=>array( '^\\s+'=>'', /* trim whitespace at the beginning of the text value */ '\\s+\$'=>'', /*...
hi Manuel, i'm reviewing some of your code and i have a question. in test_linked_select.php, you have the following line of code... $form->Connect("location",...
hi Manuel, i have an php 4.3 application that includes forms.php. forms.php takes about 2 seconds to load - all by itself - no other code. do you have any idea...
FYI... it is running off of a flash drive... not a hard drive... ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo!...
Hello, ... I do not see why it does not work. Can you get the compiled template file that Smarty generates so I can see what may not be working? -- Regards, ...
Hello, ... If you are running BOA, I suppose you are using PHP as CGI. That is usually much slower. Furthermore, most cache extensions like Turck MMCache and...
Hi! I´m using smarty and formsgeneration. It works fine. : ) Question: It´s possible to use the upload field to upload images and files? If is possible......
... Manuel, thanks for the insight. i'm having a hard time believing it is this slow due to CGI since I run in CGI mode on my dev computer and it is...
Hello, ... Use the GetFileValues function. Look in test_upload.php example. -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer...
Hello, ... CGI is slow. That is why there is FastCGI. Furthermore, when you use CGI you cannot use a cache extension. The cache extension avoids the overhead...
Hello, You need to define the ID of inputs specified by the FOR argument of the AddLabelPart function. ... "ID"=>"user_name", ... "ID"=>"password", ... -- ...
Manuel, how hard would it be to integrate the different components of YUI into the forms class? i'd be willing to help, but i'd need to see the code to do it ...
Hello, ... I do not think it is hard because Yahoo library seems to generate all Javascript for you. It is a matter of writing a plug-in class for each type of...
... Manuel, i'm shooting in the dark here. how's this for an outline? 1. create page called form_slider.php 2. define a class in slider.php like so... class...
Hello, ... The class manual has instructions on what functions you need to implement to develop a new custom input class. Please read and follow those...
... Manuel, i read through them and it isn't quite clicking. i reviewed the yahoo slider example and, frankly, it is very inefficient from a coder's ...