Search the web
Sign In
New User? Sign Up
forms-dev
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16 - 45 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16
how do i generate a select box with let's say 90 options? like a "select country". and how do i insert records to database. do i have to write custome code...
alpguneysel
Offline Send Email
Dec 22, 2004
4:47 pm
17
I have not been able to succesfully run the test_smarty_form.php script. I get the form page, but only the title, and header "Test for Manuel Lemos' PHP form...
simian187
Offline Send Email
Feb 8, 2005
12:12 am
18
Hello, ... I have tested the example with that version of Smarty and it works fine. Usually the error that you mentioned happens when you change the form ...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2005
12:29 am
19
... header "Test ... blank. ... define ... is ... fine. ... form ... the call ... to ... changed ... your ... focus to ... call ... function ... It appears...
simian187
Offline Send Email
Feb 8, 2005
3:04 pm
20
... test_smarty_form.php ... 2.6.7 ... works ... necessary ... AddFunction ... OK nothing wrong with Smarty - but here's where it fails in forms.php: Function...
simian187
Offline Send Email
Feb 8, 2005
4:46 pm
21
Hello, ... The pre-filter is only called when the template is compiled. When you call fetch(), the pre-filter has already been executed. -- Regards, Manuel...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2005
11:48 pm
22
Hello, ... This means that the input field element specified in the AddFunction call is not present in the form output definition. It seems that either you...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2005
11:54 pm
23
Hello Manuel, No I have not changed the templates (form.tpl, header.tpl, footer.tpl, formerror.tpl). The email section of the template looks like this: <tr> ...
counter intelligence
simian187
Offline Send Email
Feb 9, 2005
6:41 pm
24
Hello, ... It is hard to tell without further examination. If the input field is not added to the form output when the AddFunction is called and you have not...
Manuel Lemos
mallemos
Offline Send Email
Feb 9, 2005
7:02 pm
25
... footer.tpl, ... have ... It turns out that it was a permissions problem. The template files were not readable by apache. D'oh! Thanks for taking the time...
simian187
Offline Send Email
Feb 9, 2005
9:40 pm
26
before allowing data to interact with a database, one should prepare the data to make sure it will be stored in the database correctly and prevent malicious ...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 10, 2005
9:27 pm
27
How do you use db results as option values in Select fields. Thank you James...
idiroddi
Offline Send Email
Feb 12, 2005
5:34 am
28
Hello, ... For presenting values in the forms, the forms class already uses HtmlEntities() to output HTML tag attribute values and data. Escaping text strings...
Manuel Lemos
mallemos
Offline Send Email
Feb 13, 2005
4:57 am
29
Hello, ... You need query the database and retrieve the values and their names to build an associative array with the pairs of options values. For instance...
Manuel Lemos
mallemos
Offline Send Email
Feb 13, 2005
5:07 am
30
i have set up my form so that the logic part is primarily in my main page and i use and include statement to call a content template as required. everything...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 14, 2005
5:54 pm
31
Hello, ... If you are using Smarty as template engine, keep in mind that the Smarty plug-in that comes with the class is just for composing the form HTML. It...
Manuel Lemos
mallemos
Offline Send Email
Feb 14, 2005
6:14 pm
32
... Manuel, I'm not using smarty. i am loading in my separate display file via and include statement. i tried to combine the two files into one file by calling...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 14, 2005
9:22 pm
33
hello all, may be a scope problem? did you pass the form to the function? good luck. el_varta...
Alejandro Vartabedian
avartabedian@...
Send Email
Feb 15, 2005
10:23 am
34
Hello, ... I am not sure how you are including your files. Maybe you miss the form output definition calls. After you define your form fields, you should have...
Manuel Lemos
mallemos
Offline Send Email
Feb 16, 2005
12:48 am
35
Alejandro, now that you mention it, scope must be one of my problems. i've been trying to reorganize the code without any luck. i think my current problem is...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 18, 2005
3:53 pm
36
Hello, ... It is hard to understand your problem without seeing a real example. Can you please send a minimal script that demonstrates your problem? -- ...
Manuel Lemos
mallemos
Offline Send Email
Feb 20, 2005
5:04 pm
37
is there a simple way to populate a dropdown box with database entries? i think i'd need to run the query, assign the results to variables and then populate...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 24, 2005
10:43 pm
38
Hello, ... I have explained that in a message sent not very long time ago. Here is the message: http://groups.yahoo.com/group/forms-dev/message/29 -- Regards, ...
Manuel Lemos
mallemos
Offline Send Email
Feb 25, 2005
2:48 am
39
... Manuel, thanks for the drop down box from a db example. however, the above wasn't addressed - i probably should've put it in a second post. is the above...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 28, 2005
7:32 am
40
Hello, ... The visible length attribute is SIZE. MAXLENGTH is the limit of the text in the field including any text that may not be visible. ... The scroll...
Manuel Lemos
mallemos
Offline Send Email
Feb 28, 2005
7:37 am
41
Hello, I have a number of forms all using your form_class class. I am using it in conjunction with Smarty, following the example provided. The problem I am...
simian187
Offline Send Email
Mar 15, 2005
7:03 pm
42
... provided. ... Here's the problem - if you use different values for the "NAME" and "ID" parameters in AddInput(), then Validate() fails. Strange....
simian187
Offline Send Email
Mar 15, 2005
7:20 pm
43
Hello, ... It is hard to tell without a concrete example. Can you post the smallest example that you can write that exhibits this behavior? -- Regards, Manuel...
Manuel Lemos
mallemos
Offline Send Email
Mar 15, 2005
7:36 pm
44
Manuel, how can i call a function inside of your class? i want to call a simple date function, but i can't figure out how to get it done. i tried loading in...
operationsengineer1@...
operationsen...
Offline Send Email
Mar 23, 2005
7:44 pm
45
... manuel, it makes sense to use the date_form.php plugin you have developed, but when i add... include("common/form_date.php"); or ...
operationsengineer1@...
operationsen...
Offline Send Email
Mar 24, 2005
4:47 pm
Messages 16 - 45 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help